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 {
|
2023-02-22 13:50:40 +00:00
|
|
|
implementation(kotlin("gradle-plugin", "1.8.10"))
|
2023-02-20 09:03:35 +00:00
|
|
|
implementation("com.android.tools.build:gradle:8.0.0-beta03")
|
2022-10-31 22:43:53 +00:00
|
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3")
|
2023-02-20 06:55:27 +00:00
|
|
|
implementation("org.lsposed.lsparanoid:gradle-plugin:0.5.0")
|
2022-06-19 13:25:19 +00:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:6.4.0.202211300538-r")
|
2020-12-24 12:46:31 +00:00
|
|
|
}
|