Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/mumla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Lublin <daniel@lublin.se>2022-02-21 15:42:21 +0300
committerDaniel Lublin <daniel@lublin.se>2022-02-21 15:44:04 +0300
commitbb7f370c19f4ed944da36a572a9b11e3d8d7f162 (patch)
tree03b6a2348933160354bde50bf1eb7943c7845082
parent1bdb7157b35b22445830de77deb40e6a0d701ccf (diff)
Bump appcompat for handling emojis
Strictly only bump of appcompat was needed. Had to bump compile sdk to compile the newer appcompat. Hopefully all is good...
-rw-r--r--app/build.gradle8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/build.gradle b/app/build.gradle
index c1198f9..d1dabd1 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -53,7 +53,7 @@ allprojects {
}
android {
- compileSdkVersion 30
+ compileSdkVersion 31
defaultConfig {
minSdkVersion 14
@@ -135,11 +135,11 @@ android {
dependencies {
implementation 'androidx.multidex:multidex:2.0.1'
implementation project(":libraries:humla")
- implementation 'androidx.appcompat:appcompat:1.1.0'
+ implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.documentfile:documentfile:1.0.1'
- implementation 'androidx.fragment:fragment:1.3.4'
- implementation 'androidx.recyclerview:recyclerview:1.1.0'
+ implementation 'androidx.fragment:fragment:1.4.1'
+ implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'info.guardianproject.netcipher:netcipher:2.1.0'
}