Harsh Overseer

Results 2 comments of Harsh Overseer

@Fahad-pnw you should instead be using something like (sorry code is in java because I do not have time to convert it in kotlin so its kinda like pseudocode). ```...

hi, there is a way to do what you ask, I believe: ```val mimeTypes = mutableSetOf() mimeTypes.addAll(MimeType.ofImage()) mimeTypes.addAll(MimeType.ofVideo()) ``` Then you can go: ``` Matisse.from(this) .choose(mimeTypes, false) ``` Hope this...