simplify the uri sharing

This commit is contained in:
tibbi 2017-11-19 18:44:29 +01:00
parent 18104b98c0
commit 2ef400d342
1 changed files with 1 additions and 5 deletions

View File

@ -15,11 +15,7 @@ fun Activity.shareUri(uri: Uri) {
}
fun Activity.shareUris(uris: ArrayList<Uri>) {
if (uris.size == 1) {
shareUri(uris.first())
} else {
shareUris(uris, BuildConfig.APPLICATION_ID)
}
shareUris(uris, BuildConfig.APPLICATION_ID)
}
fun Activity.openFile(uri: Uri, forceChooser: Boolean) {