Converting the gradle setup to modern

This commit is contained in:
Henrik Rydgård
2025-10-22 11:47:01 +02:00
parent b1ff621483
commit 2ee0b00134
6 changed files with 249 additions and 262 deletions
+18
View File
@@ -0,0 +1,18 @@
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "PPSSPP"
include(":android")