From add0c1aa28ed6420a52520d878d97b2b0ef44420 Mon Sep 17 00:00:00 2001 From: volzhs Date: Sun, 28 Jan 2018 09:21:18 +0900 Subject: [PATCH] Fix Android build it's same fix with #15400, #15605 but for 2.1 branch --- platform/android/build.gradle.template | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/android/build.gradle.template b/platform/android/build.gradle.template index 23726414028..0ae62545a7a 100644 --- a/platform/android/build.gradle.template +++ b/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$$ }