PlayIntegrityFix/app/build.gradle.kts

85 lines
2.2 KiB
Plaintext
Raw Normal View History

2023-11-20 07:42:21 +08:00
plugins {
id("com.android.application")
}
android {
namespace = "es.chiteroman.playintegrityfix"
compileSdk = 34
ndkVersion = "26.1.10909125"
buildToolsVersion = "34.0.0"
2023-12-01 01:28:01 +08:00
buildFeatures {
prefab = true
}
packaging {
jniLibs {
excludes += "**/libdobby.so"
}
}
2023-11-20 07:42:21 +08:00
defaultConfig {
applicationId = "es.chiteroman.playintegrityfix"
minSdk = 26
targetSdk = 34
versionCode = 1
versionName = "1.0"
externalNativeBuild {
2023-12-05 20:13:38 +08:00
ndk {
abiFilters += "arm64-v8a"
abiFilters += "armeabi-v7a"
stl = "none"
jobs = Runtime.getRuntime().availableProcessors()
2023-11-20 07:42:21 +08:00
}
}
}
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
externalNativeBuild {
2023-12-05 20:13:38 +08:00
ndkBuild {
path = file("src/main/cpp/Android.mk")
2023-11-20 07:42:21 +08:00
}
}
2023-11-27 19:37:26 +08:00
}
2023-11-27 21:18:58 +08:00
tasks.register("copyFiles") {
2023-11-28 00:25:34 +08:00
doLast {
val moduleFolder = project.rootDir.resolve("module")
val dexFile = project.buildDir.resolve("intermediates/dex/release/minifyReleaseWithR8/classes.dex")
val soDir = project.buildDir.resolve("intermediates/stripped_native_libs/release/out/lib")
2023-11-27 19:37:26 +08:00
2023-11-28 00:25:34 +08:00
dexFile.copyTo(moduleFolder.resolve("classes.dex"), overwrite = true)
2023-11-27 19:37:26 +08:00
2023-11-28 00:25:34 +08: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 19:37:26 +08:00
}
}
2023-11-27 21:18:58 +08:00
tasks.register<Zip>("zip") {
2023-11-28 00:25:34 +08:00
dependsOn("copyFiles")
2023-11-27 19:37:26 +08:00
archiveFileName.set("PlayIntegrityFix.zip")
destinationDirectory.set(project.rootDir.resolve("out"))
from(project.rootDir.resolve("module"))
2023-11-27 21:18:58 +08:00
}
afterEvaluate {
2023-12-05 20:13:38 +08:00
tasks["assembleRelease"].finalizedBy("copyFiles", "zip")
2023-11-20 07:42:21 +08:00
}