2020-07-04 13:53:31 +00:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
2024-07-12 06:28:01 +00:00
|
|
|
|
2020-07-04 13:53:31 +00:00
|
|
|
repositories {
|
2021-09-07 16:45:15 +00:00
|
|
|
google()
|
2021-04-17 09:32:07 +00:00
|
|
|
mavenCentral()
|
2020-07-04 13:53:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("MagiskPlugin") {
|
|
|
|
id = "MagiskPlugin"
|
|
|
|
implementationClass = "MagiskPlugin"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-24 12:46:31 +00:00
|
|
|
|
|
|
|
dependencies {
|
2024-06-30 00:04:40 +00:00
|
|
|
implementation(kotlin("gradle-plugin", "2.0.0"))
|
2024-07-12 06:28:01 +00:00
|
|
|
implementation("com.android.tools.build:gradle:8.5.1")
|
|
|
|
implementation("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:2.0.0-1.0.23")
|
2024-03-09 01:09:54 +00:00
|
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7")
|
2023-03-31 03:07:17 +00:00
|
|
|
implementation("org.lsposed.lsparanoid:gradle-plugin:0.5.2")
|
2024-07-12 06:28:01 +00:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:6.10.0.202406032230-r")
|
2020-12-24 12:46:31 +00:00
|
|
|
}
|