Browse Source

Merged in azarrias/love-android-sdl2/0.10.x (pull request #18)

Add needed google repository to build.gradle
Adolfo Zarrias 6 năm trước cách đây
mục cha
commit
7254755223
1 tập tin đã thay đổi với 12 bổ sung0 xóa
  1. 12 0
      build.gradle

+ 12 - 0
build.gradle

@@ -1,7 +1,15 @@
 // Top-level build file where you can add configuration options common to all sub-projects/modules.
 // Top-level build file where you can add configuration options common to all sub-projects/modules.
 
 
+allprojects {
+    repositories {
+        google()
+        jcenter()
+    }
+}
+
 buildscript {
 buildscript {
     repositories {
     repositories {
+        google()
         jcenter()
         jcenter()
     }
     }
     dependencies {
     dependencies {
@@ -15,3 +23,7 @@ buildscript {
 task clean(type: Delete) {
 task clean(type: Delete) {
     delete rootProject.buildDir
     delete rootProject.buildDir
 }
 }
+
+repositories {
+    google()
+}