File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed
imagepicker/src/androidTest/java/com/github/drjacky/imagepicker Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project
66adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ 2.3.21] - 2022-12-19
9+
10+ * Migrate to Kotlin 1.7.21
11+ * Update internal dependencies
12+ * Fix FileNotFoundException due to not able to take extension (Special Thanks
13+ to [ Catlandor] ( https://github.com/Catlandor ) )
14+ * Revert back from ACTION_GET_CONTENT to ACTION_OPEN_DOCUMENT until
15+ this [ issue] ( https://github.com/Yalantis/uCrop/issues/857 ) is resolved.
16+ * Fix not getting image size correctly
17+
818## [ 2.3.20] - 2022-09-28
919
1020* Fix ktlint issue
@@ -270,7 +280,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
270280* Handle Runtime Permission for Camera and Storage
271281* Retrieve Image Result as File, File Path as String or Uri object
272282
273- [ Unreleased ] : https://github.com/Drjacky/ImagePicker/compare/v2.3.20...HEAD
283+ [ Unreleased ] : https://github.com/Drjacky/ImagePicker/compare/v2.3.21...HEAD
284+
285+ [ 2.3.21 ] : https://github.com/Drjacky/ImagePicker/compare/v2.1.20...v2.3.21
274286
275287[ 2.3.20 ] : https://github.com/Drjacky/ImagePicker/compare/v2.1.19...v2.3.20
276288
Original file line number Diff line number Diff line change 22buildscript {
33 ext {
44 kotlin_version = ' 1.7.21'
5- versionCode = 40
6- versionName = ' 2.3.20 '
5+ versionCode = 41
6+ versionName = ' 2.3.21 '
77 }
88
99 repositories {
Original file line number Diff line number Diff line change 11package com.github.drjacky.imagepicker
22
3- import androidx.test.InstrumentationRegistry
3+ import androidx.test.platform.app. InstrumentationRegistry
44import org.junit.Assert.assertEquals
55import org.junit.Test
66
@@ -10,11 +10,13 @@ import org.junit.Test
1010 * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
1111 */
1212class ExampleInstrumentedTest {
13+
1314 @Test
1415 fun useAppContext () {
1516 // Context of the app under test.
1617 val appContext = InstrumentationRegistry .getInstrumentation().targetContext
1718
1819 assertEquals(" com.github.drjacky.imagepicker.test" , appContext.packageName)
1920 }
21+
2022}
You can’t perform that action at this time.
0 commit comments