mirror of
https://github.com/topjohnwu/Magisk.git
synced 2026-06-02 06:03:44 +02:00
29 lines
625 B
Kotlin
29 lines
625 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("MagiskPlugin") {
|
|
id = "MagiskPlugin"
|
|
implementationClass = "MagiskPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("gradle-plugin", libs.versions.kotlin.get()))
|
|
implementation(libs.android.gradle.plugin)
|
|
implementation(libs.android.kapt.plugin)
|
|
implementation(libs.ksp.plugin)
|
|
implementation(libs.navigation.safe.args.plugin)
|
|
implementation(libs.lsparanoid.plugin)
|
|
implementation(libs.moshi.plugin)
|
|
implementation(libs.jgit)
|
|
}
|