1
mirror of https://github.com/topjohnwu/Magisk synced 2024-10-21 06:31:56 +02:00
Magisk/core/build.gradle
2017-12-04 22:21:19 +08:00

21 lines
375 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 "GRADLE=true"
}
}
}
}