diff options
author | lookshe <github@lookshe.org> | 2015-08-12 21:43:04 +0200 |
---|---|---|
committer | lookshe <github@lookshe.org> | 2015-08-12 21:43:04 +0200 |
commit | 4bb806585f6ccb02a1f25a69dafd57f17f1c7411 (patch) | |
tree | 29dcf543b7a7c1869411b838816cc6a2f4b85b84 /libs/emojicon/build.gradle | |
parent | 0ee1992da2014d51e42c008b2ae39a6e1e033d0b (diff) |
merged latest version from https://github.com/firexel/emojicon/trz/emojicon-merge
but only seems to work with lollipop, so switch back to the old pictures
Diffstat (limited to 'libs/emojicon/build.gradle')
-rw-r--r-- | libs/emojicon/build.gradle | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/libs/emojicon/build.gradle b/libs/emojicon/build.gradle index a9776be0..dca4f703 100644 --- a/libs/emojicon/build.gradle +++ b/libs/emojicon/build.gradle @@ -1,12 +1,17 @@ apply plugin: 'com.android.library' android { - compileSdkVersion 19 + compileSdkVersion 13 buildToolsVersion "21.1.2" defaultConfig { - minSdkVersion 8 - targetSdkVersion 19 + minSdkVersion 14 + targetSdkVersion 21 + } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_7 + targetCompatibility JavaVersion.VERSION_1_7 } buildTypes { @@ -18,5 +23,5 @@ android { } dependencies { - compile 'com.android.support:support-v4:19.1.0' + compile 'com.android.support:support-v4:21.0.3' } |