25 lines
604 B
Groovy
Executable File
25 lines
604 B
Groovy
Executable File
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
namespace 'com.labo.kaji.fragmentanimations'
|
|
compileSdk 33
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 33
|
|
versionCode 1
|
|
versionName "0.1.1"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.annotation:annotation:1.7.1'
|
|
testImplementation 'junit:junit:4.13.2'
|
|
} |