tweak the OPEN_DOCUMENT_TREE intent
This commit is contained in:
parent
8bcd5f7f6a
commit
55b568223a
2 changed files with 5 additions and 3 deletions
|
@ -29,5 +29,5 @@ ext {
|
|||
propMinSdkVersion = 16
|
||||
propTargetSdkVersion = propCompileSdkVersion
|
||||
propVersionCode = 1
|
||||
propVersionName = '2.14.3'
|
||||
propVersionName = '2.14.6'
|
||||
}
|
||||
|
|
|
@ -21,8 +21,10 @@ fun Activity.isShowingSAFDialog(file: File, treeUri: String, requestCode: Int):
|
|||
runOnUiThread {
|
||||
WritePermissionDialog(this) {
|
||||
Intent(Intent.ACTION_OPEN_DOCUMENT_TREE).apply {
|
||||
if (resolveActivity(packageManager) == null) {
|
||||
type = "*/*"
|
||||
startActivityForResult(intent, requestCode)
|
||||
}
|
||||
startActivityForResult(this, requestCode)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue