2020-07-04 13:53:31 +00:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
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 {
|
2023-07-21 06:10:52 +00:00
|
|
|
implementation(embeddedKotlin("gradle-plugin"))
|
2023-10-17 00:25:57 +00:00
|
|
|
implementation("com.android.tools.build:gradle:8.1.2")
|
2023-07-21 06:10:52 +00:00
|
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.4")
|
2023-03-31 03:07:17 +00:00
|
|
|
implementation("org.lsposed.lsparanoid:gradle-plugin:0.5.2")
|
2023-07-21 06:10:52 +00:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:6.7.0.202309050840-r")
|
2020-12-24 12:46:31 +00:00
|
|
|
}
|