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 { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { implementation 'androidx.appcompat:appcompat:{{androidx_appcompat_appcompat}}' implementation 'com.google.android.material:material:{{com_google_android_material_material}}' 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}}' }