mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Android: Android Studio 3.1 now requires the google() repository to come before any other repositories
This commit is contained in:
parent
97a4084804
commit
2271d3b734
1 changed files with 2 additions and 1 deletions
|
|
@ -577,8 +577,8 @@ private:
|
|||
|
||||
mo << "buildscript {" << newLine;
|
||||
mo << " repositories {" << newLine;
|
||||
mo << " jcenter()" << newLine;
|
||||
mo << " google()" << newLine;
|
||||
mo << " jcenter()" << newLine;
|
||||
mo << " }" << newLine;
|
||||
mo << " dependencies {" << newLine;
|
||||
mo << " classpath 'com.android.tools.build:gradle:" << androidPluginVersion.get().toString() << "'" << newLine;
|
||||
|
|
@ -591,6 +591,7 @@ private:
|
|||
mo << "" << newLine;
|
||||
mo << "allprojects {" << newLine;
|
||||
mo << " repositories {" << newLine;
|
||||
mo << " google()" << newLine;
|
||||
mo << " jcenter()" << newLine;
|
||||
|
||||
if (androidEnableRemoteNotifications.get())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue