TellMeNotice/app/build.gradle
zilinsoft 99ae79d96e 2025-06-27 V1.1.0
- *.[新增]支持开启和暂停监控。
- *.[改进]忽略米家app手表连接的消息。
- *.[改进]忽略滴滴出行的天气提醒。
2025-06-27 11:15:08 +08:00

43 lines
1.3 KiB
Groovy

plugins {
id 'com.android.application'
}
android {
compileSdkVersion 31
defaultConfig {
applicationId "com.itrycn.tellmenotice"
minSdkVersion 28
//noinspection EditedTargetSdkVersion
targetSdkVersion 28
versionCode 9
versionName "1.1.0"
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
}
namespace 'com.itrycn.tellmenotice'
}
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.1'
def qmui_arch_version = '2.0.1'
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'
}