Advertisement
Guest User

Untitled

a guest
Sep 21st, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2.  
  3. buildscript {
  4. repositories {
  5. jcenter()
  6. maven {
  7. url 'https://maven.google.com/'
  8. name 'Google'
  9. }
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:2.2.3'
  13.  
  14. // NOTE: Do not place your application dependencies here; they belong
  15. // in the individual module build.gradle files
  16. }
  17. }
  18.  
  19. allprojects {
  20. repositories {
  21. mavenLocal()
  22. jcenter()
  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. url 'https://maven.google.com/'
  29. name 'Google'
  30. }
  31. }
  32. }
  33. //test
  34.  
  35. ext {
  36. googlePlayServicesVersion = "15.0.1"
  37. compileSdkVersion = 26
  38. targetSdkVersion = 26
  39. buildToolsVersion = "26.0.1"
  40. supportLibVersion = "26.1.0"
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement