aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-12-14 20:48:25 +0100
committerChristian Schneppe <christian@pix-art.de>2018-12-14 21:13:31 +0100
commitfe3f14d9b13f2cd97c24bc241dddaa2c2bca755f (patch)
treeafdb45362c7bee8da2632be0e98424386d02544a /build.gradle
parent7967a35cd3fa9983a559c937a7ab24ef815d87c6 (diff)
Checkout `xmpp-addr` library 0.8.0 (fa47cac8) locally
xmpp-addr: Backfill missing class method for Java 1.7 This backfills missing class methods for `java.nio.charset.StandardCharsets` and `java.util.Objects` for compatibility with platforms which do not support these (mainly Android SDK versions <= 18). Change `minSdkVersion` to 18, backfill missing methods This reduces the minimum SDK version to 18 (Android 4.3), which notably is the last supported version for the BlackBerry OS 10.3 Android compatibility layer. Drop support for Android 4.1 and 4.2
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle
index ee0e87fdc..045a38be6 100644
--- a/build.gradle
+++ b/build.gradle
@@ -77,7 +77,7 @@ dependencies {
implementation 'pub.devrel:easypermissions:1.2.0'
implementation 'com.wefika:flowlayout:0.4.1'
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.3'
- implementation 'rocks.xmpp:xmpp-addr:0.8.0'
+ implementation project(':libs:xmpp-addr')
implementation 'org.hsluv:hsluv:0.2'
implementation 'org.conscrypt:conscrypt-android:1.3.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.15'
@@ -94,7 +94,7 @@ android {
compileSdkVersion 28
defaultConfig {
- minSdkVersion 16
+ minSdkVersion 18
targetSdkVersion 28
versionCode 249