Add injector

This commit is contained in:
Nullptr
2023-01-29 22:38:00 +08:00
parent fc8b7c1b4d
commit 70024cc082
17 changed files with 653 additions and 69 deletions

17
loader/build.gradle.kts Normal file
View File

@@ -0,0 +1,17 @@
plugins {
id("com.android.library")
}
android {
buildFeatures {
prefab = true
}
externalNativeBuild.ndkBuild {
path("src/Android.mk")
}
}
dependencies {
implementation("dev.rikka.ndk.thirdparty:cxx:1.2.0")
}