Advertisement
vinimanara

Untitled

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