Welcome Gradle Kotlin DSL

This commit is contained in:
topjohnwu
2020-07-04 06:53:31 -07:00
parent 67f7935421
commit 7922f65243
17 changed files with 425 additions and 371 deletions

View File

@@ -1,22 +0,0 @@
apply plugin: 'com.android.library'
android {
ndkVersion '99.99.99'
externalNativeBuild {
ndkBuild {
path 'jni/Android.mk'
}
}
defaultConfig {
externalNativeBuild {
ndkBuild {
// Pass arguments to ndk-build.
arguments('B_MAGISK=1', 'B_INIT64=1', 'B_BOOT=1', 'B_TEST=1',
'MAGISK_DEBUG=1', 'MAGISK_VERSION=debug', 'MAGISK_VER_CODE=INT_MAX')
}
}
}
}

24
native/build.gradle.kts Normal file
View File

@@ -0,0 +1,24 @@
plugins {
id("com.android.library")
}
android {
ndkVersion = "99.99.99"
externalNativeBuild {
ndkBuild {
path("jni/Android.mk")
}
}
defaultConfig {
externalNativeBuild {
ndkBuild {
// Pass arguments to ndk-build.
arguments("B_MAGISK=1", "B_INIT64=1", "B_BOOT=1", "B_TEST=1",
"MAGISK_DEBUG=1", "MAGISK_VERSION=debug", "MAGISK_VER_CODE=INT_MAX")
}
}
}
}