mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-22 10:31:13 +02:00
22 lines
597 B
Groovy
22 lines
597 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
maven { url 'https://jitpack.io' }
|
|
maven { url "https://maven.pkg.jetbrains.space/public/p/compose/dev" }
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
maven { url "https://maven.pkg.jetbrains.space/public/p/compose/dev" }
|
|
}
|
|
}
|
|
rootProject.name = "KenjinxAndroid"
|
|
include ':app'
|
|
include ':libkenjinx'
|