22 lines
358 B
Text
22 lines
358 B
Text
|
|
@file:Suppress("UnstableApiUsage")
|
||
|
|
|
||
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
||
|
|
|
||
|
|
pluginManagement {
|
||
|
|
repositories {
|
||
|
|
google()
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
dependencyResolutionManagement {
|
||
|
|
repositories {
|
||
|
|
google()
|
||
|
|
mavenCentral()
|
||
|
|
maven("https://jitpack.io")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
rootProject.name = "KernelSU"
|
||
|
|
include(":app")
|