Skip to content

Commit

Permalink
Update library version and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
malikmotani committed Jan 8, 2021
1 parent 443d4b3 commit 7eb1257
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Lassi is simplest way to pick media (either image, video, audio or doc)
```groovy
dependencies {
...
implementation 'com.github.Mindinventory:Lassi:0.1.6'
implementation 'com.github.Mindinventory:Lassi:0.1.7'
}
```
Expand All @@ -59,6 +59,7 @@ Lassi is simplest way to pick media (either image, video, audio or doc)
.setSupportedFileTypes("mp4", "mkv", "webm", "avi", "flv", "3gp") // Filter by limited media format (Optional)
.setMinFileSize(100) // Restrict by minimum file size
.setMaxFileSize(1024) // Restrict by maximum file size
.disableCrop // to remove crop from the single image selection (crop is enabled by default for single image)
/*
* Configuration for UI
*/
Expand Down
4 changes: 2 additions & 2 deletions lassi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
defaultConfig {
minSdkVersion 17
targetSdkVersion 30
versionCode 16
versionName "0.1.6"
versionCode 17
versionName "0.1.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
Expand Down

0 comments on commit 7eb1257

Please sign in to comment.