Sin descripción
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 468B

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