PlayIntegrityFix/app/build.gradle.kts

91 lines
2.4 KiB
Plaintext
Raw Normal View History

2023-11-20 01:42:21 +02:00
plugins {
id("com.android.application")
}
android {
namespace = "es.chiteroman.playintegrityfix"
compileSdk = 34
ndkVersion = "26.1.10909125"
buildToolsVersion = "34.0.0"
2023-11-30 19:28:01 +02:00
packaging {
jniLibs {
excludes += "**/libdobby.so"
}
}
2023-11-20 01:42:21 +02:00
defaultConfig {
applicationId = "es.chiteroman.playintegrityfix"
minSdk = 26
targetSdk = 34
versionCode = 1
versionName = "1.0"
externalNativeBuild {
2023-12-14 12:11:36 +02:00
cmake {
arguments += "-DANDROID_STL=none"
arguments += "-DCMAKE_BUILD_TYPE=Release"
cppFlags += "-std=c++20"
cppFlags += "-fno-exceptions"
cppFlags += "-fno-rtti"
cppFlags += "-fvisibility=hidden"
cppFlags += "-fvisibility-inlines-hidden"
2023-11-20 01:42:21 +02:00
}
}
}
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
2023-12-14 12:11:36 +02:00
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
)
2023-11-20 01:42:21 +02:00
}
}
compileOptions {
2023-12-05 19:43:17 +02:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2023-11-20 01:42:21 +02:00
}
externalNativeBuild {
2023-12-14 12:11:36 +02:00
cmake {
path = file("src/main/cpp/CMakeLists.txt")
version = "3.22.1"
2023-11-20 01:42:21 +02:00
}
}
2023-11-27 13:37:26 +02:00
}
2023-11-27 15:18:58 +02:00
tasks.register("copyFiles") {
2023-11-27 18:25:34 +02:00
doLast {
val moduleFolder = project.rootDir.resolve("module")
2023-12-14 12:11:36 +02:00
val dexFile =
project.layout.buildDirectory.get().asFile.resolve("intermediates/dex/release/minifyReleaseWithR8/classes.dex")
val soDir =
project.layout.buildDirectory.get().asFile.resolve("intermediates/stripped_native_libs/release/out/lib")
2023-11-27 13:37:26 +02:00
2023-11-27 18:25:34 +02:00
dexFile.copyTo(moduleFolder.resolve("classes.dex"), overwrite = true)
2023-11-27 13:37:26 +02:00
2023-11-27 18:25:34 +02:00
soDir.walk().filter { it.isFile && it.extension == "so" }.forEach { soFile ->
val abiFolder = soFile.parentFile.name
val destination = moduleFolder.resolve("zygisk/$abiFolder.so")
soFile.copyTo(destination, overwrite = true)
}
2023-11-27 13:37:26 +02:00
}
}
2023-11-27 15:18:58 +02:00
tasks.register<Zip>("zip") {
2023-11-27 18:25:34 +02:00
dependsOn("copyFiles")
2023-11-27 13:37:26 +02:00
archiveFileName.set("PlayIntegrityFix.zip")
destinationDirectory.set(project.rootDir.resolve("out"))
from(project.rootDir.resolve("module"))
2023-11-27 15:18:58 +02:00
}
afterEvaluate {
2023-12-05 14:13:38 +02:00
tasks["assembleRelease"].finalizedBy("copyFiles", "zip")
2023-12-05 19:43:17 +02:00
}