build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. maven {
  14. url "https://nexilis.io/artifactory/ob-in-plugin/"
  15. credentials {
  16. username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
  17. password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
  18. }
  19. }
  20. }
  21. dependencies {
  22. classpath("com.android.tools.build:gradle")
  23. classpath("com.facebook.react:react-native-gradle-plugin")
  24. classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
  25. classpath("io.nexilis.in-plugin:io.nexilis.in-plugin.gradle.plugin:3.3.7-k")
  26. }
  27. }
  28. apply plugin: "com.facebook.react.rootproject"
  29. allprojects {
  30. repositories {
  31. maven {
  32. url "https://nexilis.io/artifactory/ob-in-plugin/"
  33. credentials {
  34. username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
  35. password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
  36. }
  37. }
  38. maven {
  39. url "https://nexilis.io/artifactory/ob-in-plugin/"
  40. credentials {
  41. username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
  42. password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
  43. }
  44. }
  45. }
  46. }