| 1234567891011121314151617181920212223242526272829303132333435363738394041 | plugins {    id 'com.android.library'}android {    compileSdkVersion 30    defaultConfig {        minSdkVersion 16        targetSdkVersion 30    }    buildTypes {        release {            minifyEnabled false        }        preRelease {            minifyEnabled false        }    }    compileOptions {        sourceCompatibility JavaVersion.VERSION_1_8        targetCompatibility JavaVersion.VERSION_1_8    }}afterEvaluate {    generateReleaseBuildConfig.enabled = false    generateDebugBuildConfig.enabled = false}dependencies {    implementation 'androidx.appcompat:appcompat:1.3.1'    implementation 'com.google.android.material:material:1.3.0'    implementation 'com.github.bumptech.glide:glide:4.12.0'    implementation 'com.google.code.gson:gson:2.9.1'    api project(':timcommon')}
 |