Skip to content

Commit

Permalink
bump version to v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TinyHai committed Apr 23, 2024
1 parent 7a426cc commit cb94bfb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
- 添加按需禁止功能(默认关闭
- 适配系统双开应用
- 适配Android 5.0 - Android 14(仅在Android 14测试)
- 添加弹窗验证功能(默认使用系统的密码验证
- 添加独立密码配置(若开启,部分配置项修改会要求验证密码,且弹窗验证也使用该密码验证)
- 独立密码忘记了?3秒内点按右上角消息图标5次清除密码
- 更新版本号
15 changes: 6 additions & 9 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,13 @@ android {
applicationId = "cn.tinyhai.ban_uninstall"
minSdk = 21
targetSdk = 34
versionCode = 2
versionName = "1.1.0"
versionCode = 3
versionName = "1.2.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
debug {
signingConfig = signingConfigs.getByName("release")
}
release {
isMinifyEnabled = true
proguardFiles(
Expand All @@ -61,14 +58,14 @@ android {
aidl = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.2"
kotlinCompilerExtensionVersion = "1.5.12"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
}

Expand Down

0 comments on commit cb94bfb

Please sign in to comment.