Magisk/native/build.gradle.kts

33 lines
717 B
Plaintext
Raw Permalink Normal View History

2020-07-04 13:53:31 +00:00
plugins {
id("com.android.library")
}
2021-09-07 16:45:15 +00:00
setupCommon()
2020-07-04 13:53:31 +00:00
2021-09-07 16:45:15 +00:00
android {
2024-04-30 18:29:34 +00:00
namespace = "com.topjohnwu.magisk.binary"
2022-05-10 03:53:47 +00:00
2020-07-04 13:53:31 +00:00
externalNativeBuild {
ndkBuild {
path("src/Android.mk")
2020-07-04 13:53:31 +00:00
}
}
sourceSets.getByName("main") {
manifest.srcFile("src/AndroidManifest.xml")
}
2020-07-04 13:53:31 +00:00
defaultConfig {
externalNativeBuild {
ndkBuild {
// Pass arguments to ndk-build.
arguments(
2024-02-29 10:36:05 +00:00
"B_MAGISK=1", "B_INIT=1", "B_BOOT=1", "B_POLICY=1",
"B_PRELOAD=1", "B_PROP=1", "B_CRT0=1"
)
2024-04-04 14:15:14 +00:00
abiFilters("armeabi-v7a", "arm64-v8a", "x86", "x86_64", "riscv64")
2020-07-04 13:53:31 +00:00
}
}
}
}