mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-02-17 17:58:28 +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"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|