You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
21 lines
373 B
Plaintext
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")
|
|
}
|