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 {
|
2021-11-24 10:08:29 +00:00
|
|
|
implementation(kotlin("gradle-plugin", "1.6.0"))
|
2021-12-10 12:32:04 +00:00
|
|
|
implementation("com.android.tools.build:gradle:7.0.4")
|
|
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.4.0-beta02")
|
2021-11-24 10:08:29 +00:00
|
|
|
implementation("io.michaelrocks:paranoid-gradle-plugin:0.3.7")
|
2021-07-18 05:11:20 +00:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:5.12.0.202106070339-r")
|
2020-12-24 12:46:31 +00:00
|
|
|
}
|