This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/Android/app/build.gradle

32 lines
1.0 KiB
Groovy
Raw Normal View History

2019-07-18 13:29:28 +08:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion '29.0.2'
2019-07-18 13:29:28 +08:00
defaultConfig {
2019-07-20 13:13:35 +08:00
applicationId "com.github.penfeizhou.doric"
2019-07-18 13:29:28 +08:00
minSdkVersion 16
targetSdkVersion 29
2019-07-18 13:29:28 +08:00
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2019-07-18 13:29:28 +08:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
2019-07-19 10:27:09 +08:00
implementation project(':doric')
implementation 'com.github.bumptech.glide:glide:4.10.0'
implementation 'com.github.bumptech.glide:annotations:4.10.0'
2019-11-11 17:09:48 +08:00
implementation 'com.github.penfeizhou.android.animation:glide-plugin:1.2.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
2019-07-18 13:29:28 +08:00
}