Magisk/native/build.gradle

23 lines
495 B
Groovy
Raw Normal View History

2017-12-04 07:16:41 +00:00
apply plugin: 'com.android.library'
android {
2020-05-30 19:50:08 +00:00
ndkVersion '99.99.99'
2020-04-03 10:33:39 +00:00
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.
arguments('B_MAGISK=1', 'B_INIT64=1', 'B_BOOT=1', 'B_TEST=1',
2019-02-12 10:17:02 +00:00
'MAGISK_DEBUG=1', 'MAGISK_VERSION=debug', 'MAGISK_VER_CODE=INT_MAX')
2017-12-04 07:16:41 +00:00
}
}
}
}