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-08-11 16:38:59 +00:00
|
|
|
implementation(kotlin("gradle-plugin", "1.9.0"))
|
2023-10-17 00:25:57 +00:00
|
|
|
implementation("com.android.tools.build:gradle:8.1.2")
|
2023-08-28 05:44:51 +00:00
|
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.1")
|
2023-03-31 03:07:17 +00:00
|
|
|
implementation("org.lsposed.lsparanoid:gradle-plugin:0.5.2")
|
2023-05-30 08:32:43 +00:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:6.5.0.202303070854-r")
|
2020-12-24 12:46:31 +00:00
|
|
|
}
|