Advertisement
Guest User

Untitled

a guest
Jul 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2.  
  3. buildscript {
  4.     repositories {
  5.         mavenLocal()
  6.         jcenter()  
  7.         google()
  8.     }
  9.     dependencies {
  10.         classpath 'com.android.tools.build:gradle:3.1.1'
  11.         classpath 'com.google.gms:google-services:4.0.0'
  12.  
  13.         // NOTE: Do not place your application dependencies here; they belong
  14.         // in the individual module build.gradle files
  15.     }
  16. }
  17.  
  18. apply plugin: 'com.android.application'
  19.  
  20. allprojects {
  21.     repositories {
  22.         mavenLocal()
  23.         jcenter()
  24.         google()
  25.         maven {
  26.             // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
  27.             url "$rootDir/../node_modules/react-native/android"
  28.         }
  29.         maven {
  30.             // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
  31.             url "https://maven.google.com"
  32.         }
  33.     }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement