Skip to content

Commit

Permalink
docs: release compose-image-picker stable version 1.0.0⭐
Browse files Browse the repository at this point in the history
  • Loading branch information
huhx committed Aug 4, 2022
1 parent 9343cd6 commit 26c5be4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Internationalization | Dart Theme | Picker Example |

1. Gradle dependency:
```groovy
implementation "io.github.huhx:compose-image-picker:1.0.0-rc"
implementation "io.github.huhx:compose-image-picker:1.0.0"
```

<br>
Expand Down Expand Up @@ -99,7 +99,7 @@ data class AssetPickerConfig(
val requestType: RequestType = RequestType.COMMON,
)
```
so you can change the maxAssets and gridCount
So you can change the maxAssets and gridCount
```kotlin
AssetPicker(
assetPickerConfig = AssetPickerConfig(gridCount = 4, maxAssets = 20),
Expand Down
5 changes: 2 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@ android {
}

dependencies {
// implementation(project(":compose_image_picker"))

implementation "io.github.huhx:compose-image-picker:1.0.2-alpha"
implementation(project(":compose_image_picker"))
// implementation "io.github.huhx:compose-image-picker:1.0.0"

implementation 'androidx.core:core-ktx:1.8.0'
implementation "androidx.compose.ui:ui:$compose_version"
Expand Down
3 changes: 1 addition & 2 deletions compose_image_picker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,9 @@ publishing {
}
}


groupId "io.github.huhx"
artifactId "compose-image-picker"
version "1.0.0-rc"
version "1.0.0"

afterEvaluate {
from components.release
Expand Down

0 comments on commit 26c5be4

Please sign in to comment.