build.gradle 1.2 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 = "28.0.3"
  5. minSdkVersion = 16
  6. compileSdkVersion = 28
  7. targetSdkVersion = 28
  8. supportLibVersion = "28.0.0"
  9. googlePlayServicesAuthVersion = "17.0.0"
  10. }
  11. repositories {
  12. google()
  13. jcenter()
  14. }
  15. dependencies {
  16. classpath("com.android.tools.build:gradle:3.4.1")
  17. classpath("com.google.gms:google-services:4.3.0")
  18. // NOTE: Do not place your application dependencies here; they belong
  19. // in the individual module build.gradle files
  20. }
  21. }
  22. allprojects {
  23. repositories {
  24. mavenLocal()
  25. maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
  26. maven {
  27. // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
  28. url("$rootDir/../node_modules/react-native/android")
  29. }
  30. maven {
  31. // Android JSC is installed from npm
  32. url("$rootDir/../node_modules/jsc-android/dist")
  33. }
  34. google()
  35. jcenter()
  36. }
  37. }