update Commons and use its way of getting mimetype of multiple uris

This commit is contained in:
tibbi 2017-10-22 22:57:53 +02:00
parent a4b24a7deb
commit 608292a357
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ android {
}
dependencies {
compile 'com.simplemobiletools:commons:2.30.6'
compile 'com.simplemobiletools:commons:2.30.13'
compile 'com.davemorrissey.labs:subsampling-scale-image-view:3.6.0'
compile 'com.theartofdev.edmodo:android-image-cropper:2.4.0'
compile 'com.bignerdranch.android:recyclerview-multiselect:0.2'

View File

@ -65,7 +65,7 @@ fun Activity.shareMedia(media: List<Medium>) {
Intent().apply {
action = Intent.ACTION_SEND_MULTIPLE
type = "image/* video/*"
type = uris.getMimeType()
addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris)
startActivity(Intent.createChooser(this, shareTitle))