Advertisement
Guest User

build.gradle

a guest
Jun 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 1.00 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.     ext {
  5.         buildToolsVersion = "28.0.3"
  6.         minSdkVersion = 16
  7.         compileSdkVersion = 28
  8.         targetSdkVersion = 28
  9.         supportLibVersion = "28.0.0"
  10.     }
  11.     repositories {
  12.         google()
  13.         jcenter()
  14.     }
  15.     dependencies {
  16.         classpath 'com.android.tools.build:gradle:3.3.1'
  17.  
  18.         // NOTE: Do not place your application dependencies here; they belong
  19.         // in the individual module build.gradle files
  20.     }
  21. }
  22.  
  23. allprojects {
  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.         maven {
  34.             url 'https://jitpack.io'
  35.         }
  36.         maven {
  37.             url 'https://maven.google.com'
  38.         }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement