From d59ac2bf26b45cde99cde26bb5954a4ab98b0b93 Mon Sep 17 00:00:00 2001 From: snake-4 <18491360+snake-4@users.noreply.github.com> Date: Tue, 9 Apr 2024 05:34:27 +0200 Subject: [PATCH] Updated AGP and compileSdkVersion --- build.gradle.kts | 4 ++-- gradle/libs.versions.toml | 2 +- module/build.gradle.kts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 66a9489..95706b5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,14 +4,14 @@ plugins { alias(libs.plugins.agp.lib) apply false } -val commitHash: String by extra({ +val commitHash: String by extra { val stdout = ByteArrayOutputStream() rootProject.exec { commandLine("git", "rev-parse", "--short", "HEAD") standardOutput = stdout } stdout.toString().trim() -}) +} val moduleId by extra("zygisk-assistant") val moduleName by extra("Zygisk Assistant") diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 7542de6..15c4554 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -agp = "8.3.0" +agp = "8.3.1" [plugins] agp-lib = { id = "com.android.library", version.ref = "agp" } diff --git a/module/build.gradle.kts b/module/build.gradle.kts index c10213c..34601db 100644 --- a/module/build.gradle.kts +++ b/module/build.gradle.kts @@ -13,7 +13,7 @@ val abiList: List by rootProject.extra android { namespace = "com.example.library" - compileSdkVersion = "android-31" + compileSdkVersion = "android-34" defaultConfig { minSdk = 21 ndk {