mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-23 18:15:30 +00:00
28 lines
597 B
Plaintext
28 lines
597 B
Plaintext
plugins {
|
|
id("com.android.library")
|
|
}
|
|
|
|
setupCommon()
|
|
|
|
android {
|
|
namespace = "com.topjohnwu.magisk.native"
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
path("jni/Android.mk")
|
|
}
|
|
}
|
|
|
|
defaultConfig {
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
// Pass arguments to ndk-build.
|
|
arguments(
|
|
"B_MAGISK=1", "B_INIT=1", "B_BOOT=1", "B_TEST=1", "B_POLICY=1", "B_PRELOAD=1",
|
|
"MAGISK_DEBUG=1", "MAGISK_VERSION=debug", "MAGISK_VER_CODE=INT_MAX"
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|