File tree Expand file tree Collapse file tree 5 files changed +23
-12
lines changed
Expand file tree Collapse file tree 5 files changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 1.7.2] - 2020-07-14
10+ ### Changed
11+ * Fixed .crop() opening gallery or camera twice [ #32 ] ( https://github.com/Dhaval2404/ImagePicker/issues/32 )
12+ * Fixed UCropActivity Crash Android 4.4 (KiKat) [ #82 ] ( https://github.com/Dhaval2404/ImagePicker/issues/82 )
13+
14+ ## [ 1.7.1] - 2020-03-26
15+ ### Changed
16+ * Fixed The application could not be installed: INSTALL_FAILED_CONFLICTING_PROVIDER issue [ #67 ] ( https://github.com/Dhaval2404/ImagePicker/issues/67 )
17+
918## [ 1.7] - 2020-03-23
1019### Changed
1120 * Added option to limit MIME types while choosing a gallery image (Special Thanks to [ Marchuck] ( https://github.com/Marchuck ) )
@@ -59,7 +68,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5968 * Handle Runtime Permission for Camera and Storage
6069 * Retrive Image Result as File, File Path as String or Uri object
6170
62- [ Unreleased ] : https://github.com/Dhaval2404/ImagePicker/compare/v1.7...HEAD
71+ [ Unreleased ] : https://github.com/Dhaval2404/ImagePicker/compare/v2.0...HEAD
72+ [ 1.7.2 ] : https://github.com/Dhaval2404/ImagePicker/compare/v1.7.1...v1.7.2
73+ [ 1.7.1 ] : https://github.com/Dhaval2404/ImagePicker/compare/v1.7...v1.7.1
6374[ 1.7 ] : https://github.com/Dhaval2404/ImagePicker/compare/v1.6...v1.7
6475[ 1.6 ] : https://github.com/Dhaval2404/ImagePicker/compare/v1.5...v1.6
6576[ 1.5 ] : https://github.com/Dhaval2404/ImagePicker/compare/v1.4...v1.5
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ Almost 90% of the app that I have developed has an Image upload feature. Along w
5454 ```
5555
5656 ```groovy
57- implementation 'com.github.dhaval2404:imagepicker:1.7.1 '
57+ implementation 'com.github.dhaval2404:imagepicker:1.7.2 '
5858 ```
5959
6060 ** If you are yet to Migrate on AndroidX, Use support build artifact:**
@@ -64,7 +64,7 @@ Almost 90% of the app that I have developed has an Image upload feature. Along w
6464
6565 **If you want to get the activity result inline in a modern way (lambda) install [InlineActivityResult](https://github.com/florent37/InlineActivityResult) library:**
6666 ```groovy
67- implementation 'com.github.florent37:inline-activity-result-kotlin:1.0.1 '
67+ implementation 'com.github.florent37:inline-activity-result-kotlin:1.0.4 '
6868 ```
6969
70702. <span style="color:red">**If you target Android 10 or higher(targetSdkVersion >= 29)**</span>, set the value of ``requestLegacyExternalStorage`` to true in your app's manifest file:
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-6.2.2 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.4 -all.zip
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ android {
1313 defaultConfig {
1414 minSdkVersion 19
1515 targetSdkVersion 28
16- versionCode 9
17- versionName " 1.7.1 "
16+ versionCode 10
17+ versionName " 1.7.2 "
1818
1919 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
2020 }
@@ -49,10 +49,10 @@ dependencies {
4949 implementation " androidx.exifinterface:exifinterface:1.1.0"
5050
5151 // More Info: https://github.com/Yalantis/uCrop
52- implementation ' com.github.yalantis:ucrop:2.2.4 '
52+ implementation ' com.github.yalantis:ucrop:2.2.5 '
5353
5454 // More Info: https://github.com/florent37/InlineActivityResult
55- compileOnly ' com.github.florent37:inline-activity-result-kotlin:1.0.3 '
55+ compileOnly ' com.github.florent37:inline-activity-result-kotlin:1.0.4 '
5656
5757 testImplementation ' junit:junit:4.13'
5858 androidTestImplementation ' androidx.test.ext:junit:1.1.1'
7272 siteUrl = ' https://github.com/Dhaval2404/ImagePicker/'
7373 gitUrl = ' https://github.com/Dhaval2404/ImagePicker.git'
7474
75- libraryVersion = ' 1.7.1 '
75+ libraryVersion = ' 1.7.2 '
7676 // If you are uploading new library try : gradlew install
7777 // If you are updating existing library then execute: gradlew bintrayUpload
7878 // In both the case don't forgot to put bintray credentials in local.properties file.
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ android {
1212 applicationId " com.github.dhaval2404.imagepicker.sample"
1313 minSdkVersion 19
1414 targetSdkVersion 28
15- versionCode 9
16- versionName " 1.7.1 "
15+ versionCode 10
16+ versionName " 1.7.2 "
1717 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1818 vectorDrawables. useSupportLibrary = true
1919 }
@@ -40,7 +40,7 @@ dependencies {
4040 implementation ' androidx.appcompat:appcompat:1.1.0'
4141 implementation ' androidx.browser:browser:1.2.0'
4242 implementation ' com.google.android.material:material:1.1.0'
43- implementation ' com.github.florent37:inline-activity-result-kotlin:1.0.3 '
43+ implementation ' com.github.florent37:inline-activity-result-kotlin:1.0.4 '
4444
4545 testImplementation ' junit:junit:4.13'
4646 androidTestImplementation ' androidx.test.ext:junit:1.1.1'
You can’t perform that action at this time.
0 commit comments