build.gradle 1013 B

1234567891011121314151617181920212223242526272829303132333435
  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 = 23
  6. compileSdkVersion = 34
  7. targetSdkVersion = 34
  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://nexilis.io/artifactory/nexilis-libs/"
  24. credentials {
  25. username = "***REPLACE***WITH***YOUR***MAVEN***USERNAME***"
  26. password = "***REPLACE***WITH***YOUR***MAVEN***PASSWORD***"
  27. }
  28. }
  29. maven { url 'https://maven.google.com' }
  30. maven { url 'https://jitpack.io' }
  31. }
  32. }