mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-26 19:57:51 -05:00
android: Convert gradle scripts to Kotlin DSL
This commit is contained in:
18
src/android/settings.gradle.kts
Normal file
18
src/android/settings.gradle.kts
Normal file
@ -0,0 +1,18 @@
|
||||
pluginManagement {
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
@Suppress("UnstableApiUsage")
|
||||
dependencyResolutionManagement {
|
||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
}
|
||||
|
||||
include(":app")
|
Reference in New Issue
Block a user