Magisk/buildSrc/build.gradle.kts

35 lines
861 B
Plaintext
Raw Normal View History

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
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()
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
tasks.withType<KotlinCompile>().configureEach {
kotlinOptions {
languageVersion = "2.0"
}
}
2020-12-24 12:46:31 +00:00
dependencies {
2024-06-30 00:04:40 +00:00
implementation(kotlin("gradle-plugin", "2.0.0"))
2024-08-11 11:30:01 +00:00
implementation("com.android.tools.build:gradle:8.5.2")
2024-07-12 06:28:01 +00:00
implementation("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:2.0.0-1.0.23")
2024-03-09 01:09:54 +00:00
implementation("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7")
2024-07-24 23:53:15 +00:00
implementation("org.lsposed.lsparanoid:gradle-plugin:0.6.0")
2024-07-12 06:28:01 +00:00
implementation("org.eclipse.jgit:org.eclipse.jgit:6.10.0.202406032230-r")
2020-12-24 12:46:31 +00:00
}