add google maven repo required by appcompat-v7 26

Summary:
add google maven repo required by appcompat-v7 26

CI will download appcompat-v7 version 26.0.2

[GENERAL][MINOR][Android] - add google maven repo required by appcompat-v7 26
Closes https://github.com/facebook/react-native/pull/19316

Differential Revision: D8039324

Pulled By: hramos

fbshipit-source-id: 3e9f4dd20560f4337e81967ee9b5c30ec61016de
This commit is contained in:
Dulmandakh 2018-05-16 22:29:13 -07:00 committed by Facebook Github Bot
parent 1e8a45f206
commit 8dad3e4132

View File

@ -4,6 +4,10 @@ buildscript {
repositories {
jcenter()
mavenLocal()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
@ -18,6 +22,10 @@ allprojects {
repositories {
jcenter()
mavenLocal()
maven {
url 'https://maven.google.com/'
name 'Google'
}
def androidSdk = System.getenv("ANDROID_SDK")
maven {