Update app to target API 33

Close #6206
This commit is contained in:
topjohnwu
2022-08-23 03:59:09 -07:00
parent 3f7f6e619a
commit 928a16d8cc
20 changed files with 114 additions and 64 deletions

View File

@ -43,13 +43,13 @@ private val Project.android: BaseAppModuleExtension
fun Project.setupCommon() {
androidBase {
compileSdkVersion(32)
compileSdkVersion(33)
buildToolsVersion = "32.0.0"
ndkPath = "$sdkDirectory/ndk/magisk"
defaultConfig {
minSdk = 21
targetSdk = 32
targetSdk = 33
}
compileOptions {