Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings.gradle 422B

1234567891011121314151617181920212223
  1. pluginManagement {
  2. repositories {
  3. gradlePluginPortal()
  4. google()
  5. mavenCentral()
  6. }
  7. }
  8. include ':launcher', ':unityLibrary'
  9. dependencyResolutionManagement {
  10. repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
  11. repositories {
  12. google()
  13. mavenCentral()
  14. flatDir {
  15. dirs "${project(':unityLibrary').projectDir}/libs"
  16. }
  17. }
  18. }