diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-01-06 14:35:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-06 14:35:00 +0100 |
commit | 51854d61b0695e9487c7c624dfeb8c75718bd01b (patch) | |
tree | ef6ac131294176ec5f82907233264502eb01f6f7 | |
parent | 2a1ce0fbc4cbb29b125f2792c1e1d702487cca63 (diff) | |
parent | d2dc70d7d5f362013231aa42eaf76635301a43e3 (diff) |
Merge pull request #15400 from volzhs/fix-android-build
Fix Android build error
-rw-r--r-- | platform/android/build.gradle.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/build.gradle.template b/platform/android/build.gradle.template index 13b4d3b6c7..89189ef1a0 100644 --- a/platform/android/build.gradle.template +++ b/platform/android/build.gradle.template @@ -20,7 +20,7 @@ allprojects { } 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$$ } |