settings.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. pluginManagement {
  2. repositories {
  3. gradlePluginPortal()
  4. google()
  5. mavenCentral()
  6. maven {
  7. credentials {
  8. username "$atmob_maven_username"
  9. password "$atmob_maven_password"
  10. }
  11. allowInsecureProtocol = true
  12. url "$atmob_maven_url/repository/android-group/"
  13. }
  14. }
  15. }
  16. dependencyResolutionManagement {
  17. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  18. repositories {
  19. google()
  20. mavenCentral()
  21. maven { url 'https://jitpack.io' }
  22. maven {
  23. credentials {
  24. username "$atmob_maven_username"
  25. password "$atmob_maven_password"
  26. }
  27. allowInsecureProtocol = true
  28. url "$atmob_maven_url/repository/android-group/"
  29. }
  30. maven {
  31. url 'https://nexus.gravity-engine.com/repository/maven-releases/'
  32. }
  33. maven {
  34. url 'https://nexus.gravity-engine.com/repository/maven-snapshots/'
  35. }
  36. }
  37. }
  38. rootProject.name = "WatermarkCamera"
  39. include ':app'