Magisk/native/build.gradle.kts

24 lines
483 B
Plaintext
Raw Normal View History

2020-07-04 15:53:31 +02:00
plugins {
id("com.android.library")
}
2021-09-07 18:45:15 +02:00
setupCommon()
2020-07-04 15:53:31 +02:00
2021-09-07 18:45:15 +02:00
android {
2020-07-04 15:53:31 +02:00
externalNativeBuild {
ndkBuild {
path("jni/Android.mk")
}
}
defaultConfig {
externalNativeBuild {
ndkBuild {
// Pass arguments to ndk-build.
2021-01-25 09:19:10 +01:00
arguments("B_MAGISK=1", "B_INIT=1", "B_BOOT=1", "B_TEST=1",
2021-09-07 18:45:15 +02:00
"MAGISK_DEBUG=1", "MAGISK_VERSION=debug", "MAGISK_VER_CODE=INT_MAX")
2020-07-04 15:53:31 +02:00
}
}
}
}