26 lines
613 B
Groovy
26 lines
613 B
Groovy
plugins {
|
|
alias(libs.plugins.android.library)
|
|
}
|
|
android {
|
|
compileSdk 35
|
|
namespace 'app.dinus.com.loadingdrawable'
|
|
defaultConfig {
|
|
minSdkVersion 24
|
|
targetSdkVersion 35
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.core:core:1.5.0' // or later
|
|
implementation 'androidx.annotation:annotation:1.6.0'
|
|
implementation libs.androidx.interpolator
|
|
}
|