2022-01-27 09:46:00 +00:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
|
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
|
|
|
|
2022-01-27 09:46:00 +00:00
|
|
|
tasks.withType<KotlinCompile> {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "11"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-24 12:46:31 +00:00
|
|
|
dependencies {
|
2022-08-22 07:47:45 +00:00
|
|
|
implementation(kotlin("gradle-plugin", "1.7.10"))
|
2022-10-31 22:43:53 +00:00
|
|
|
implementation("com.android.tools.build:gradle:7.3.1")
|
|
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3")
|
2021-11-24 10:08:29 +00:00
|
|
|
implementation("io.michaelrocks:paranoid-gradle-plugin:0.3.7")
|
2022-08-22 07:47:45 +00:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:6.2.0.202206071550-r")
|
2020-12-24 12:46:31 +00:00
|
|
|
}
|