build.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext {
  4. buildToolsVersion = "29.0.1"
  5. minSdkVersion = 19
  6. compileSdkVersion = 29
  7. targetSdkVersion = 29
  8. androidXCore = "1.0.2"
  9. }
  10. repositories {
  11. google()
  12. jcenter()
  13. }
  14. dependencies {
  15. classpath("com.android.tools.build:gradle:3.4.2")
  16. // NOTE: Do not place your application dependencies here; they belong
  17. // in the individual module build.gradle files
  18. }
  19. }
  20. allprojects {
  21. repositories {
  22. mavenLocal()
  23. maven {
  24. // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
  25. url("$rootDir/../node_modules/react-native/android")
  26. }
  27. maven {
  28. // Android JSC is installed from npm
  29. url("$rootDir/../node_modules/jsc-android/dist")
  30. }
  31. google()
  32. jcenter()
  33. maven { url 'https://jitpack.io' }
  34. maven { url "http://dl.bintray.com/lukaville/maven" }
  35. maven { url 'https://dl.bintray.com/umsdk/release' }
  36. }
  37. }