Guest User

Untitled

a guest
Nov 14th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. // Top-level build file where you can add configuration options common to
  2. all sub-projects/modules.
  3.  
  4. buildscript {
  5. ext {
  6. buildToolsVersion = "27.0.3"
  7. minSdkVersion = 16
  8. compileSdkVersion = 27
  9. targetSdkVersion = 26
  10. supportLibVersion = "27.1.1"
  11. }
  12. repositories {
  13. jcenter()
  14. google()
  15. }
  16. dependencies {
  17. classpath 'com.android.tools.build:gradle:3.1.4'
  18.  
  19. // NOTE: Do not place your application dependencies here; they belong
  20. // in the individual module build.gradle files
  21. }
  22. }
  23.  
  24. allprojects {
  25. repositories {
  26. mavenLocal()
  27. jcenter()
  28. maven {
  29. // All of React Native (JS, Obj-C sources, Android binaries) is
  30. installed from npm
  31. url "$rootDir/../node_modules/react-native/android"
  32. }
  33. google()
  34. }
  35. }
  36.  
  37.  
  38. task wrapper(type: Wrapper) {
  39. gradleVersion = '4.4'
  40. distributionUrl = distributionUrl.replace("bin", "all")
  41. }
Add Comment
Please, Sign In to add comment