mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-01-01 18:17:41 +00:00
21 lines
379 B
Groovy
21 lines
379 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 27
|
||
|
|
||
|
externalNativeBuild {
|
||
|
ndkBuild {
|
||
|
path 'jni/Android.mk'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
defaultConfig {
|
||
|
externalNativeBuild {
|
||
|
ndkBuild {
|
||
|
// Passes an optional argument to ndk-build.
|
||
|
arguments "COMPILEALL=true"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|