settings.gradle.kts 530 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the BSD-style license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. pluginManagement {
  9. repositories {
  10. google()
  11. mavenCentral()
  12. gradlePluginPortal()
  13. }
  14. }
  15. dependencyResolutionManagement {
  16. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  17. repositories {
  18. google()
  19. mavenCentral()
  20. }
  21. }
  22. rootProject.name = "Llama Android Demo"
  23. include(":app")