Skip to content

Commit

Permalink
fix: Get support libs from maven
Browse files Browse the repository at this point in the history
Fetch support librararies from google’s maven rathen than from jcenter.

Some support libraries, for example `support-v4.jar `, are removed from jcenter, and can be found in Maven.

https://developer.android.com/topic/libraries/support-library/setup
  • Loading branch information
pavlemilicevicbb authored and skyeckstrom committed Jul 13, 2018
1 parent a25d8d3 commit 18acd09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flagship/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ buildscript {
allprojects {
repositories {
mavenLocal()
jcenter()
maven { url 'https://maven.google.com' }
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
Expand Down

0 comments on commit 18acd09

Please sign in to comment.