2024-07-12 15:27:04 -07:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
|
2020-07-04 06:53:31 -07:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
2024-07-11 23:28:01 -07:00
|
|
|
|
2020-07-04 06:53:31 -07:00
|
|
|
repositories {
|
2021-09-08 00:45:15 +08:00
|
|
|
google()
|
2021-04-17 17:32:07 +08:00
|
|
|
mavenCentral()
|
2020-07-04 06:53:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
plugins {
|
|
|
|
register("MagiskPlugin") {
|
|
|
|
id = "MagiskPlugin"
|
|
|
|
implementationClass = "MagiskPlugin"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-24 04:46:31 -08:00
|
|
|
|
2024-07-12 15:27:04 -07:00
|
|
|
tasks.withType<KotlinCompile>().configureEach {
|
|
|
|
kotlinOptions {
|
|
|
|
languageVersion = "2.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-24 04:46:31 -08:00
|
|
|
dependencies {
|
2024-06-29 17:04:40 -07:00
|
|
|
implementation(kotlin("gradle-plugin", "2.0.0"))
|
2024-07-11 23:28:01 -07:00
|
|
|
implementation("com.android.tools.build:gradle:8.5.1")
|
|
|
|
implementation("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:2.0.0-1.0.23")
|
2024-03-08 17:09:54 -08:00
|
|
|
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7")
|
2024-07-24 16:53:15 -07:00
|
|
|
implementation("org.lsposed.lsparanoid:gradle-plugin:0.6.0")
|
2024-07-11 23:28:01 -07:00
|
|
|
implementation("org.eclipse.jgit:org.eclipse.jgit:6.10.0.202406032230-r")
|
2020-12-24 04:46:31 -08:00
|
|
|
}
|