27 lines
593 B
Groovy
27 lines
593 B
Groovy
plugins {
|
|
id 'com.android.library'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
defaultConfig {
|
|
minSdkVersion 24
|
|
targetSdkVersion 31
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
api 'androidx.appcompat:appcompat:1.1.0'
|
|
api 'com.google.android.material:material:1.1.0'
|
|
api 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
|
|
api("com.github.bumptech.glide:glide:4.13.1")
|
|
|
|
} |