TellMeNotice/app/build.gradle
如果当时 732d4c7c64 2020-12-18 V1.0.1
*.[新增]支持通过wifi名称来判断是否在上班。
*.[新增]增加游戏模式(尚未完成)。
*.[改进]不连公司wifi的情况下,个性化购物和淘口令声音。
2020-12-18 23:18:00 +08:00

39 lines
1.0 KiB
Groovy

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