1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
plugins {
id 'com.android.library'
}
apply from: "$rootDir/bytebuddy.gradle"
android {
compileSdk 32
defaultConfig {
minSdk 21
targetSdk 32
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
targetCompatibility = javaVersion
}
}
dependencies {
implementation group: 'com.google.android.material', name: 'material', version: '1.6.1'
implementation project(":service-definition-lib")
}
|