summaryrefslogtreecommitdiff
path: root/platform/android/build.gradle.template
diff options
context:
space:
mode:
authorvolzhs <volzhs@gmail.com>2016-05-24 11:22:35 +0900
committervolzhs <volzhs@gmail.com>2016-05-24 11:22:35 +0900
commitff67c256f52b904bdabe17e755194149da9b219f (patch)
tree99ad5a67cd6b2da5ec834100117f93e4f220bfa0 /platform/android/build.gradle.template
parent160713d4d36ab4bd5f9b53d0d3e0c69d7e4960f7 (diff)
fix compatibility for Android API 14 with supporting API 23
using ``NotificationCompat`` in ``support-v4`` library will increase APK filesize a little bit, but it guarantees to run OK with API 4+ tested with API 19 and 23 devices
Diffstat (limited to 'platform/android/build.gradle.template')
-rw-r--r--platform/android/build.gradle.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/build.gradle.template b/platform/android/build.gradle.template
index b960d396ee..411f778934 100644
--- a/platform/android/build.gradle.template
+++ b/platform/android/build.gradle.template
@@ -17,7 +17,7 @@ allprojects {
}
dependencies {
-
+ compile 'com.android.support:support-v4:23.+'
$$GRADLE_DEPENDENCIES$$
}