forked from MeloNX/MeloNX
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 = "RyujinxAndroid"
|
|
include ':app'
|
|
include ':libryujinx'
|