123456789101112131415161718192021222324 |
- def sdkInt = Integer.parseInt("$sdkInt")
- android {
- compileSdk sdkInt
- defaultConfig {
- minSdk sdkInt
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_17
- targetCompatibility JavaVersion.VERSION_17
- }
- }
|