TellMeNotice/app/build.gradle
如果当时 36d068baf1 2020-12-21 V1.0.2
*.[新增]新增微信红包提醒
*.[改进]更全面的识别淘口令。
*.[改进]更全面的识别快递签收提醒。
2020-12-21 22:41:12 +08:00

43 lines
1.3 KiB
Groovy

plugins {
id 'com.android.application'
}
android {
compileSdkVersion 29
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.itrycn.tellmenotice"
minSdkVersion 23
targetSdkVersion 29
versionCode 3
versionName "1.0.2"
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'
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"
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}