2020-11-28 07:37:57 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 29
|
|
|
|
buildToolsVersion "30.0.2"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.itrycn.tellmenotice"
|
|
|
|
minSdkVersion 23
|
|
|
|
targetSdkVersion 29
|
2020-12-21 14:41:00 +00:00
|
|
|
versionCode 3
|
|
|
|
versionName "1.0.2"
|
2020-11-28 07:37:57 +00:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
|
|
implementation 'com.google.android.material:material:1.2.1'
|
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
|
2020-12-21 14:41:00 +00:00
|
|
|
implementation 'com.jakewharton:butterknife:8.8.1'
|
|
|
|
implementation 'com.qmuiteam:qmui:2.0.0-alpha10'
|
|
|
|
def qmui_arch_version = '2.0.0-alpha10'
|
|
|
|
implementation "com.qmuiteam:arch:$qmui_arch_version"
|
2020-11-28 07:37:57 +00:00
|
|
|
testImplementation 'junit:junit:4.+'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
|
|
|
|
}
|