Files
ReZygisk/loader/build.gradle.kts
2023-01-30 17:46:38 +08:00

21 lines
373 B
Plaintext

plugins {
id("com.android.library")
}
android {
buildFeatures {
androidResources = false
buildConfig = false
prefab = true
}
externalNativeBuild.ndkBuild {
path("src/Android.mk")
}
}
dependencies {
implementation("dev.rikka.ndk.thirdparty:cxx:1.2.0")
implementation("org.lsposed.lsplt:lsplt-standalone:1.1")
}