Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sangcomz committed Oct 3, 2022
2 parents 4cb3b0f + bed56f5 commit c4ec2a2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,9 @@ _FishBun_ is a highly customizable image picker for Android.
<img src="/pic/fishbuns.png">


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

- add startAlbumWithActivityResultCallback function(#239)
- remove jcenter
- library version update
- sdk version update


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

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

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):

<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />

<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />

## How to Use

Use _FishBun_ in an activity:
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include ':FishBunDemo', ':FishBun'

gradle.ext.versionCode = 35
gradle.ext.versionName = '1.0.0-beta01'
gradle.ext.versionCode = 36
gradle.ext.versionName = '1.1.0'

gradle.ext.set('minSdk', 15)
gradle.ext.set('targetSdk', 33)
Expand Down

0 comments on commit c4ec2a2

Please sign in to comment.