mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-23 18:15:30 +00:00
25 lines
598 B
Plaintext
25 lines
598 B
Plaintext
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("MagiskPlugin") {
|
|
id = "MagiskPlugin"
|
|
implementationClass = "MagiskPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("gradle-plugin", "1.8.10"))
|
|
implementation("com.android.tools.build:gradle:8.0.1")
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3")
|
|
implementation("org.lsposed.lsparanoid:gradle-plugin:0.5.2")
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:6.4.0.202211300538-r")
|
|
}
|