diff --git a/README.md b/README.md index 219a02c..ff290eb 100644 --- a/README.md +++ b/README.md @@ -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" ```
@@ -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), diff --git a/app/build.gradle b/app/build.gradle index 6ec19db..240b460 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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" diff --git a/compose_image_picker/build.gradle b/compose_image_picker/build.gradle index d274178..420f272 100644 --- a/compose_image_picker/build.gradle +++ b/compose_image_picker/build.gradle @@ -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