build.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. buildscript {
  2. ext {
  3. buildToolsVersion = "35.0.0"
  4. minSdkVersion = 24
  5. compileSdkVersion = 35
  6. targetSdkVersion = 34
  7. ndkVersion = "26.1.10909125"
  8. kotlinVersion = "1.9.24"
  9. }
  10. repositories {
  11. google()
  12. mavenCentral()
  13. }
  14. dependencies {
  15. classpath("com.android.tools.build:gradle")
  16. classpath("com.facebook.react:react-native-gradle-plugin")
  17. classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
  18. }
  19. }
  20. apply plugin: "com.facebook.react.rootproject"
  21. allprojects {
  22. repositories {
  23. maven {
  24. url "https://nexilis.io/artifactory/ui-uc-api-libs/"
  25. credentials {
  26. username = "***REPLACE***WITH***YOUR***MAVEN***USERNAME***"
  27. password = "***REPLACE***WITH***YOUR***MAVEN***PASSWORD***"
  28. }
  29. }
  30. // Add the following lines to include the Nexilis Security Shield repository into your app
  31. maven {
  32. url "https://nexilis.io/artifactory/ss-libs/"
  33. credentials {
  34. username = "***REPLACE***WITH***YOUR***MAVEN***USERNAME***"
  35. password = "***REPLACE***WITH***YOUR***MAVEN***PASSWORD***"
  36. }
  37. }
  38. }
  39. }