Update dependencies, AGP, and SDK level

This commit is contained in:
topjohnwu
2023-08-11 09:38:59 -07:00
parent b5b14ce343
commit 93876b5fd3
6 changed files with 19 additions and 15 deletions

View File

@@ -16,10 +16,9 @@ gradlePlugin {
}
dependencies {
// Cannot upgrade to 1.9.0: https://issuetracker.google.com/issues/236612358#comment19
implementation(kotlin("gradle-plugin", "1.8.22"))
implementation("com.android.tools.build:gradle:8.0.2")
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.6.0")
implementation(kotlin("gradle-plugin", "1.9.0"))
implementation("com.android.tools.build:gradle:8.1.0")
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.0")
implementation("org.lsposed.lsparanoid:gradle-plugin:0.5.2")
implementation("org.eclipse.jgit:org.eclipse.jgit:6.5.0.202303070854-r")
}

View File

@@ -69,13 +69,13 @@ private val Project.androidComponents
fun Project.setupCommon() {
androidBase {
compileSdkVersion(33)
buildToolsVersion = "33.0.2"
compileSdkVersion(34)
buildToolsVersion = "34.0.0"
ndkPath = "$sdkDirectory/ndk/magisk"
defaultConfig {
minSdk = 23
targetSdk = 33
targetSdk = 34
}
compileOptions {