Add zygiskd

This commit is contained in:
Nullptr
2023-01-28 15:54:03 +08:00
parent 3d0efd6fc5
commit cd272c6370
17 changed files with 1358 additions and 0 deletions

27
settings.gradle.kts Normal file
View File

@@ -0,0 +1,27 @@
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
plugins {
id("com.android.library") version "7.4.0"
id("com.android.application") version "7.4.0"
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "ZygiskOnKernelSU"
include(
":module",
":zygiskd",
)