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 {
|
2022-05-10 03:53:47 +00:00
|
|
|
namespace = "com.topjohnwu.magisk.native"
|
|
|
|
|
2020-07-04 13:53:31 +00:00
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
path("jni/Android.mk")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
// Pass arguments to ndk-build.
|
2022-04-08 09:13:31 +00:00
|
|
|
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"
|
|
|
|
)
|
2020-07-04 13:53:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|