You've already forked Zygisk-Assistant
mirror of
https://github.com/snake-4/Zygisk-Assistant.git
synced 2025-09-06 06:37:02 +00:00
Updated NDK, AGP and Gradle
This commit is contained in:
@@ -1,16 +1,14 @@
|
||||
import java.io.ByteArrayOutputStream
|
||||
|
||||
plugins {
|
||||
id("com.android.library") version "8.5.0" apply false
|
||||
id("com.android.library") version "8.8.1" apply false
|
||||
}
|
||||
|
||||
val commitHash: String by extra {
|
||||
val stdout = ByteArrayOutputStream()
|
||||
rootProject.exec {
|
||||
commandLine("git", "rev-parse", "--short", "HEAD")
|
||||
standardOutput = stdout
|
||||
val result = providers.exec {
|
||||
commandLine("git", "rev-parse", "--verify", "--short", "HEAD")
|
||||
}
|
||||
stdout.toString().trim()
|
||||
result.standardOutput.asText.get().trim()
|
||||
}
|
||||
|
||||
val moduleId by extra("zygisk-assistant")
|
||||
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
||||
@@ -14,7 +14,7 @@ val abiList: List<String> by rootProject.extra
|
||||
android {
|
||||
namespace = "com.example.library"
|
||||
compileSdkVersion = "android-34"
|
||||
ndkVersion = "27.0.12077973"
|
||||
ndkVersion = "28.0.13004108"
|
||||
defaultConfig {
|
||||
minSdk = 21
|
||||
externalNativeBuild {
|
||||
|
||||
Reference in New Issue
Block a user