Magisk/native/build.gradle

23 lines
539 B
Groovy
Raw Normal View History

2017-12-04 07:16:41 +00:00
apply plugin: 'com.android.library'
android {
2018-03-25 19:53:06 +00:00
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
2017-12-04 07:16:41 +00:00
externalNativeBuild {
ndkBuild {
path 'jni/Android.mk'
}
}
defaultConfig {
externalNativeBuild {
ndkBuild {
2018-05-12 19:04:40 +00:00
// Pass arguments to ndk-build.
2018-09-27 07:56:56 +00:00
arguments('B_MAGISK=1', 'B_INIT=1', 'B_BOOT=1', 'B_BXZ=1',
'MAGISK_DEBUG=-DMAGISK_DEBUG')
2017-12-04 07:16:41 +00:00
}
}
}
}