Skip to content

Commit c4ec2a2

Browse files
committed
Merge branch 'master' into develop
2 parents 4cb3b0f + bed56f5 commit c4ec2a2

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@ _FishBun_ is a highly customizable image picker for Android.
1515
<img src="/pic/fishbuns.png">
1616

1717

18-
## What's New in _FishBun_ 1.0.0-beta01? :tada:
18+
## What's New in _FishBun_ 1.1.0? :tada:
1919

20-
- add startAlbumWithActivityResultCallback function(#239)
21-
- remove jcenter
22-
- library version update
20+
- sdk version update
2321

2422

2523
## Customizable Styles
@@ -112,7 +110,7 @@ Fishbun 0.10.0 and above only supports projects that have been migrated to [andr
112110
Setting up _FishBun_ requires to add this Gradle configuration:
113111

114112
dependencies {
115-
implementation 'io.github.sangcomz:fishbun:1.0.0-alpha06'
113+
implementation 'io.github.sangcomz:fishbun:x.x.x'
116114
117115
implementation 'io.coil-kt:coil:0.11.0'
118116
or
@@ -133,6 +131,14 @@ If your app targets Android 11 with compileSdk/targetSdk >= 30 then you will nee
133131
</intent>
134132
</queries>
135133

134+
If your app targets Android 13 with compileSdk/targetSdk >= 33 then you will need to add this to the manifest. [Android documentation here](https://developer.android.com/about/versions/13/behavior-changes-13#granular-media-permissions):
135+
136+
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
137+
138+
<uses-permission
139+
android:name="android.permission.READ_EXTERNAL_STORAGE"
140+
android:maxSdkVersion="32" />
141+
136142
## How to Use
137143

138144
Use _FishBun_ in an activity:

settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include ':FishBunDemo', ':FishBun'
22

3-
gradle.ext.versionCode = 35
4-
gradle.ext.versionName = '1.0.0-beta01'
3+
gradle.ext.versionCode = 36
4+
gradle.ext.versionName = '1.1.0'
55

66
gradle.ext.set('minSdk', 15)
77
gradle.ext.set('targetSdk', 33)

0 commit comments

Comments
 (0)