plugins { id("com.android.library") } android { namespace = "{{package}}" compileSdk = {{target_sdk}} defaultConfig { minSdk = {{min_sdk}} targetSdk = {{target_sdk}} testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles("consumer-rules.pro") } buildTypes { release { val minifyEnabled = false proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro") } } compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } } dependencies { implementation("androidx.appcompat:appcompat:{{androidx_appcompat_appcompat}}") testImplementation("junit:junit:{{junit_junit}}") androidTestImplementation("androidx.test.ext:junit:{{androidx_test_ext_junit}}") androidTestImplementation("androidx.test.espresso:espresso-core:{{androidx_test_espresso_espresso_core}}") }