mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-23 18:15:30 +00:00
25 lines
609 B
Plaintext
25 lines
609 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("MagiskPlugin") {
|
|
id = "MagiskPlugin"
|
|
implementationClass = "MagiskPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("gradle-plugin", "1.5.30"))
|
|
implementation("com.android.tools.build:gradle:7.0.2")
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.4.0-alpha08")
|
|
implementation("io.michaelrocks:paranoid-gradle-plugin:0.3.5")
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:5.12.0.202106070339-r")
|
|
}
|