浏览代码

Merge pull request #16125 from volzhs/fix-android-build

Fix Android build
volzhs 7 年之前
父节点
当前提交
082a2f95df
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      platform/android/build.gradle.template

+ 2 - 1
platform/android/build.gradle.template

@@ -14,12 +14,13 @@ allprojects {
     repositories {
     	jcenter()
 	mavenCentral()
+	google()
 	$$GRADLE_REPOSITORY_URLS$$
     }
 }
 
 dependencies {
-	compile 'com.android.support:support-v4:23.+'  // can be removed if minSdkVersion 16 and modify DownloadNotification.java & V14CustomNotification.java
+	compile 'com.android.support:support-v4:27.+'  // can be removed if minSdkVersion 16 and modify DownloadNotification.java & V14CustomNotification.java
 	$$GRADLE_DEPENDENCIES$$
 }