Magisk/app/build.gradle.kts

222 lines
7.2 KiB
Plaintext
Raw Normal View History

import org.apache.tools.ant.filters.FixCrLfFilter
2020-12-26 21:33:30 -08:00
2020-07-04 06:53:31 -07:00
plugins {
id("com.android.application")
kotlin("android")
2020-11-23 12:35:24 -08:00
kotlin("plugin.parcelize")
2020-07-04 06:53:31 -07:00
kotlin("kapt")
id("androidx.navigation.safeargs.kotlin")
}
kapt {
correctErrorTypes = true
useBuildCache = true
mapDiagnosticLocations = true
javacOptions {
option("-Xmaxerrs", 1000)
}
arguments {
arg("room.incremental", "true")
}
2020-07-04 06:53:31 -07:00
}
android {
defaultConfig {
applicationId = "com.topjohnwu.magisk"
vectorDrawables.useSupportLibrary = true
versionName = Config.version
versionCode = Config.versionCode
2021-07-18 13:11:20 +08:00
ndk.abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64")
2020-07-04 06:53:31 -07:00
}
buildTypes {
getByName("release") {
isMinifyEnabled = true
isShrinkResources = true
2021-07-18 13:11:20 +08:00
proguardFiles("proguard-rules.pro")
2020-07-04 06:53:31 -07:00
}
}
buildFeatures {
dataBinding = true
}
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
packagingOptions {
2021-07-24 03:51:00 -07:00
resources {
2021-07-18 13:11:20 +08:00
excludes += "/META-INF/*"
excludes += "/org/bouncycastle/**"
excludes += "/kotlin/**"
excludes += "/kotlinx/**"
excludes += "/okhttp3/**"
excludes += "/*.txt"
excludes += "/*.bin"
2021-07-24 03:51:00 -07:00
}
jniLibs {
2021-07-18 13:11:20 +08:00
keepDebugSymbols += "**/*.so"
2021-07-24 03:51:00 -07:00
}
2020-07-04 06:53:31 -07:00
}
kotlinOptions {
2021-07-24 03:51:00 -07:00
jvmTarget = "11"
2020-07-04 06:53:31 -07:00
}
}
val syncLibs by tasks.registering(Sync::class) {
into("src/main/jniLibs")
into("armeabi-v7a") {
from(rootProject.file("native/out/armeabi-v7a")) {
include("busybox", "magiskboot", "magiskinit", "magisk")
rename { if (it == "magisk") "libmagisk32.so" else "lib$it.so" }
}
}
into("x86") {
from(rootProject.file("native/out/x86")) {
include("busybox", "magiskboot", "magiskinit", "magisk")
rename { if (it == "magisk") "libmagisk32.so" else "lib$it.so" }
}
}
2021-05-12 13:40:53 +08:00
into("arm64-v8a") {
from(rootProject.file("native/out/arm64-v8a")) {
include("busybox", "magiskboot", "magiskinit", "magisk")
rename { if (it == "magisk") "libmagisk64.so" else "lib$it.so" }
}
}
into("x86_64") {
from(rootProject.file("native/out/x86_64")) {
include("busybox", "magiskboot", "magiskinit", "magisk")
rename { if (it == "magisk") "libmagisk64.so" else "lib$it.so" }
}
}
2021-01-23 16:50:55 -08:00
onlyIf {
2021-05-12 13:40:53 +08:00
if (inputs.sourceFiles.files.size != 16)
2021-01-23 16:50:55 -08:00
throw StopExecutionException("Please build binaries first! (./build.py binary)")
true
}
}
val syncAssets by tasks.registering(Sync::class) {
2021-05-12 13:40:53 +08:00
dependsOn(syncLibs)
inputs.property("version", Config.version)
inputs.property("versionCode", Config.versionCode)
into("src/main/assets")
from(rootProject.file("scripts")) {
2021-01-24 07:18:14 -08:00
include("util_functions.sh", "boot_patch.sh", "uninstaller.sh", "addon.d.sh")
}
into("chromeos") {
from(rootProject.file("tools/futility"))
from(rootProject.file("tools/keys")) {
include("kernel_data_key.vbprivk", "kernel.keyblock")
}
}
filesMatching("**/util_functions.sh") {
filter {
2021-07-18 13:11:20 +08:00
it.replace(
"#MAGISK_VERSION_STUB",
"MAGISK_VER='${Config.version}'\nMAGISK_VER_CODE=${Config.versionCode}"
2021-05-12 13:40:53 +08:00
)
}
filter<FixCrLfFilter>("eol" to FixCrLfFilter.CrLf.newInstance("lf"))
}
}
val syncResources by tasks.registering(Sync::class) {
dependsOn(syncAssets)
into("src/main/resources/META-INF/com/google/android")
from(rootProject.file("scripts/update_binary.sh")) {
rename { "update-binary" }
}
from(rootProject.file("scripts/flash_script.sh")) {
rename { "updater-script" }
}
}
tasks["preBuild"]?.dependsOn(syncResources)
2020-12-26 21:33:30 -08:00
android.applicationVariants.all {
val keysDir = rootProject.file("tools/keys")
val outSrcDir = File(buildDir, "generated/source/keydata/$name")
2021-09-01 01:11:57 -07:00
val outSrc = File(outSrcDir, "com/topjohnwu/magisk/signing/KeyData.java")
2020-12-26 21:33:30 -08:00
val genSrcTask = tasks.register("generate${name.capitalize()}KeyData") {
inputs.dir(keysDir)
outputs.file(outSrc)
doLast {
2021-09-02 21:31:33 -07:00
genKeyData(keysDir, outSrc)
2020-12-26 21:33:30 -08:00
}
}
2021-07-24 03:51:00 -07:00
registerJavaGeneratingTask(genSrcTask, outSrcDir)
2020-12-26 21:33:30 -08:00
}
2021-07-18 13:11:20 +08:00
configurations.all {
exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk7")
exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk8")
}
2020-07-04 06:53:31 -07:00
dependencies {
implementation(project(":app:shared"))
implementation("com.github.topjohnwu:jtar:1.0.0")
2020-08-11 00:54:19 -07:00
implementation("com.github.topjohnwu:indeterminate-checkbox:1.0.7")
2020-10-06 00:40:57 -07:00
implementation("com.github.topjohnwu:lz4-java:1.7.1")
2020-07-04 06:53:31 -07:00
implementation("com.jakewharton.timber:timber:4.7.1")
2021-07-24 03:51:00 -07:00
val vBC = "1.69"
implementation("org.bouncycastle:bcprov-jdk15on:${vBC}")
implementation("org.bouncycastle:bcpkix-jdk15on:${vBC}")
2020-07-04 06:53:31 -07:00
val vBAdapt = "4.0.0"
val bindingAdapter = "me.tatarka.bindingcollectionadapter2:bindingcollectionadapter"
implementation("${bindingAdapter}:${vBAdapt}")
implementation("${bindingAdapter}-recyclerview:${vBAdapt}")
2021-03-16 03:44:25 -07:00
val vMarkwon = "4.6.2"
2020-07-04 06:53:31 -07:00
implementation("io.noties.markwon:core:${vMarkwon}")
implementation("io.noties.markwon:html:${vMarkwon}")
implementation("io.noties.markwon:image:${vMarkwon}")
implementation("com.caverock:androidsvg:1.4")
val vLibsu = "3.1.2"
2020-07-04 06:53:31 -07:00
implementation("com.github.topjohnwu.libsu:core:${vLibsu}")
implementation("com.github.topjohnwu.libsu:io:${vLibsu}")
val vRetrofit = "2.9.0"
implementation("com.squareup.retrofit2:retrofit:${vRetrofit}")
implementation("com.squareup.retrofit2:converter-moshi:${vRetrofit}")
implementation("com.squareup.retrofit2:converter-scalars:${vRetrofit}")
2021-04-09 20:01:32 -07:00
val vOkHttp = "4.9.1"
implementation("com.squareup.okhttp3:okhttp:${vOkHttp}")
2020-07-04 06:53:31 -07:00
implementation("com.squareup.okhttp3:logging-interceptor:${vOkHttp}")
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:${vOkHttp}")
val vMoshi = "1.12.0"
2020-07-04 06:53:31 -07:00
implementation("com.squareup.moshi:moshi:${vMoshi}")
kapt("com.squareup.moshi:moshi-kotlin-codegen:${vMoshi}")
2021-05-06 11:37:21 -07:00
val vRoom = "2.3.0"
2020-07-04 06:53:31 -07:00
implementation("androidx.room:room-runtime:${vRoom}")
2020-07-09 04:49:14 -07:00
implementation("androidx.room:room-ktx:${vRoom}")
2020-07-04 06:53:31 -07:00
kapt("androidx.room:room-compiler:${vRoom}")
2020-08-15 05:43:28 -07:00
val vNav: String by rootProject.extra
implementation("androidx.navigation:navigation-fragment-ktx:${vNav}")
implementation("androidx.navigation:navigation-ui-ktx:${vNav}")
2020-07-04 06:53:31 -07:00
2021-02-05 04:41:01 -08:00
implementation("androidx.biometric:biometric:1.1.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.0")
2020-07-04 06:53:31 -07:00
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
2020-12-26 17:05:12 -08:00
implementation("androidx.browser:browser:1.3.0")
2020-07-04 06:53:31 -07:00
implementation("androidx.preference:preference:1.1.1")
2021-07-24 03:51:00 -07:00
implementation("androidx.recyclerview:recyclerview:1.2.1")
implementation("androidx.fragment:fragment-ktx:1.3.6")
2021-07-18 13:11:20 +08:00
implementation("androidx.work:work-runtime-ktx:2.7.0-alpha05")
2021-05-06 11:37:21 -07:00
implementation("androidx.transition:transition:1.4.1")
2021-07-24 03:51:00 -07:00
implementation("androidx.core:core-ktx:1.6.0")
implementation("com.google.android.material:material:1.4.0")
2020-07-04 06:53:31 -07:00
}