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

34 lines
1.2 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-11-20 12:03:01 +08:00
applicationId "pub.doric.demo"
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'
2019-11-22 20:43:44 +08:00
implementation "com.google.android.material:material:1.0.0"
2019-11-23 15:50:28 +08:00
implementation project(':devkit')
implementation 'com.github.bumptech.glide:glide:4.10.0'
implementation 'com.github.bumptech.glide:annotations:4.10.0'
2019-11-22 17:59:52 +08:00
implementation 'com.github.penfeizhou.android.animation:glide-plugin:1.3.1'
2019-11-25 17:15:43 +08:00
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
2019-12-02 11:02:58 +08:00
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.0'
2019-07-18 13:29:28 +08:00
}