Files
AndroidJava/AndroidAnimationExercise/subs/skeleton/build.gradle
T
coco 7846a45f2c a
2026-07-03 15:47:27 +08:00

31 lines
872 B
Groovy

apply plugin: 'com.android.library'
def ext = rootProject.ext
android {
compileSdk ext.compileSdk
defaultConfig {
minSdk ext.minSdk
targetSdk ext.targetSdk
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
namespace 'com.ethanhua.skeleton'
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'io.supercharge:shimmerlayout:2.1.0'
implementation "androidx.recyclerview:recyclerview:$ext.support_version"
implementation "androidx.appcompat:appcompat:$ext.androidx_appcompat"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test:runner:1.6.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}