generate method
Generates the content of the template as a string.
Implementation
@override
String generate() {
return '''
// ---- GENERATED CODE - DO NOT MODIFY BY HAND ----
plugins {
id("com.android.library")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "$androidPackageName"
compileSdk = $compileSdk
defaultConfig {
minSdk = $minSdk
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}
''';
}