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