mirror of
https://github.com/gezimos/inkOS.git
synced 2026-06-16 09:08:24 -04:00
21 lines
402 B
Kotlin
21 lines
402 B
Kotlin
@file:Suppress("UnstableApiUsage")
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven(url = "https://jitpack.io")
|
|
}
|
|
}
|
|
|
|
include(":app")
|
|
rootProject.name = "inkOS" |