From 3568d1a02d52ac85b5297045865c1c3d9df1a96d Mon Sep 17 00:00:00 2001 From: Nguyen Hoang Lam Date: Sat, 26 Nov 2022 19:56:39 +0700 Subject: [PATCH] =?UTF-8?q?Upgrade=20dependencies=E2=80=99s=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- imagepicker/build.gradle | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index de8e661..826666b 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ dependencyResolutionManagement { Add the following dependency in app build.gradle: ``` dependencies { - implementation 'com.github.nguyenhoanglam:ImagePicker:1.5.4' + implementation 'com.github.nguyenhoanglam:ImagePicker:1.5.5' } ``` diff --git a/imagepicker/build.gradle b/imagepicker/build.gradle index 663d8fa..b51c0a2 100644 --- a/imagepicker/build.gradle +++ b/imagepicker/build.gradle @@ -24,14 +24,14 @@ android { dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation 'androidx.appcompat:appcompat:1.5.1' + implementation 'com.google.android.material:material:1.6.0' + implementation 'androidx.appcompat:appcompat:1.4.1' implementation 'androidx.recyclerview:recyclerview:1.2.1' implementation "androidx.activity:activity:1.7.0-alpha02" implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' implementation 'androidx.core:core-ktx:1.9.0' implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.7.20' - implementation 'com.google.android.material:material:1.7.0' implementation 'com.github.bumptech.glide:glide:4.14.2' annotationProcessor 'com.github.bumptech.glide:compiler:4.14.2' } @@ -47,7 +47,7 @@ afterEvaluate { // You can then customize attributes of the publication as shown below. groupId = 'com.github.nguyenhoanglam' artifactId = 'final' - version = '1.5.4' + version = '1.5.5' } } }