updating version to 5.13.9

This commit is contained in:
tibbi 2019-06-11 23:16:55 +02:00
parent 50ed884d04
commit 88eb00ff42
2 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ buildscript {
propMinSdkVersion = 21
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '5.13.7'
propVersionName = '5.13.9'
kotlin_version = '1.3.31'
}

View file

@ -292,7 +292,7 @@ fun Context.deleteFromMediaStore(path: String) {
val where = "${MediaStore.MediaColumns.DATA} = ?"
val args = arrayOf(path)
contentResolver.delete(getFileUri(path), where, args)
} catch (e: Exception) {
} catch (ignored: Exception) {
}
}.start()
}