2020-07-04 15:53:31 +02:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
|
|
|
repositories {
|
2021-04-17 11:32:07 +02:00
|
|
|
mavenCentral()
|
2020-07-04 15:53:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("MagiskPlugin") {
|
|
|
|
id = "MagiskPlugin"
|
|
|
|
implementationClass = "MagiskPlugin"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-24 13:46:31 +01:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:5.10.0.202012080955-r")
|
|
|
|
}
|