build.gradle 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext {
  4. buildToolsVersion = "33.0.0"
  5. minSdkVersion = 21
  6. compileSdkVersion = 33
  7. targetSdkVersion = 33
  8. // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
  9. ndkVersion = "23.1.7779620"
  10. }
  11. repositories {
  12. google()
  13. mavenCentral()
  14. }
  15. dependencies {
  16. classpath("com.android.tools.build:gradle")
  17. classpath("com.facebook.react:react-native-gradle-plugin")
  18. }
  19. }
  20. allprojects {
  21. repositories {
  22. maven {
  23. url "https://newuniverse.io/artifactory/nexilis-libs/"
  24. credentials {
  25. username = "qmera"
  26. password = "APABxewRKs8RMhZXERA8ySSx4Bn"
  27. // username = "***REPLACE***WITH***YOUR***MAVEN***USERNAME***"
  28. // password = "***REPLACE***WITH***YOUR***MAVEN***PASSWORD***"
  29. }
  30. }
  31. maven { url 'https://maven.google.com' }
  32. maven { url 'https://jitpack.io' }
  33. }
  34. }