settings.gradle 910 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. pluginManagement {
  2. repositories {
  3. gradlePluginPortal()
  4. google()
  5. mavenCentral()
  6. maven { url 'https://developer.huawei.com/repo/' }
  7. }
  8. }
  9. dependencyResolutionManagement {
  10. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  11. repositories {
  12. google()
  13. mavenCentral()
  14. maven { url 'https://jitpack.io' }
  15. maven { url 'https://dl.bintray.com/jetbrains/anko'}
  16. maven { url "https://s01.oss.sonatype.org/content/groups/public" }
  17. // hms
  18. maven { url 'https://developer.huawei.com/repo/' }
  19. // fcm
  20. maven { url "https://maven.google.com" }
  21. }
  22. }
  23. rootProject.name = "XAPP"
  24. include ':app'
  25. include ':lib_base'
  26. include ':module_home'
  27. include ':module_main'
  28. include ':module_apps'
  29. include ':module_art'
  30. include ':module_mine'
  31. include ':module_msg'
  32. include ':module_web'
  33. include ':module_contacts'