2024-11-22 05:05:35 +00:00
|
|
|
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
|
2024-07-12 22:27:04 +00:00
|
|
|
|
2020-07-04 13:53:31 +00:00
|
|
|
plugins {
|
|
|
|
`kotlin-dsl`
|
|
|
|
}
|
2024-07-12 06:28:01 +00:00
|
|
|
|
2020-07-04 13:53:31 +00:00
|
|
|
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
|
|
|
|
2024-11-22 05:05:35 +00:00
|
|
|
kotlin {
|
|
|
|
compilerOptions {
|
|
|
|
languageVersion = KotlinVersion.KOTLIN_2_0
|
2024-07-12 22:27:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-24 12:46:31 +00:00
|
|
|
dependencies {
|
2024-08-18 20:12:23 +00:00
|
|
|
implementation(kotlin("gradle-plugin", libs.versions.kotlin.get()))
|
|
|
|
implementation(libs.android.gradle.plugin)
|
|
|
|
implementation(libs.ksp.plugin)
|
|
|
|
implementation(libs.navigation.safe.args.plugin)
|
|
|
|
implementation(libs.lsparanoid.plugin)
|
|
|
|
implementation(libs.jgit)
|
2020-12-24 12:46:31 +00:00
|
|
|
}
|