mirror of
https://github.com/meowarex/rl-mobile.git
synced 2026-06-17 21:13:11 +10:00
25 lines
451 B
Kotlin
25 lines
451 B
Kotlin
@file:Suppress("UnstableApiUsage")
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven {
|
|
name = "aliucord"
|
|
url = uri("https://maven.aliucord.com/releases")
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "RadiantLyricsManager"
|
|
include(":app")
|