2020-07-04 06:53:31 -07:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
repositories {
|
2021-09-08 00:45:15 +08:00
|
|
|
google()
|
2021-04-17 17:32:07 +08:00
|
|
|
mavenCentral()
|
2020-07-04 06:53:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("MagiskPlugin") {
|
|
|
|
id = "MagiskPlugin"
|
|
|
|
implementationClass = "MagiskPlugin"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-24 04:46:31 -08:00
|
|
|
|
|
|
|
dependencies {
|
2021-09-08 00:45:15 +08:00
|
|
|
implementation(kotlin("gradle-plugin", "1.5.30"))
|
|
|
|
implementation("com.android.tools.build:gradle:7.0.2")
|
2021-09-09 20:19:49 -07:00
|
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.4.0-alpha08")
|
2021-09-08 00:45:15 +08:00
|
|
|
implementation("io.michaelrocks:paranoid-gradle-plugin:0.3.5")
|
2021-07-18 13:11:20 +08:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:5.12.0.202106070339-r")
|
2020-12-24 04:46:31 -08:00
|
|
|
}
|