improving the way OTG devices are recognized
This commit is contained in:
parent
11c34c4f65
commit
2c2a922c60
1 changed files with 11 additions and 1 deletions
|
@ -17,6 +17,7 @@ import android.widget.Toast
|
||||||
import androidx.appcompat.widget.SearchView
|
import androidx.appcompat.widget.SearchView
|
||||||
import androidx.core.view.MenuItemCompat
|
import androidx.core.view.MenuItemCompat
|
||||||
import androidx.recyclerview.widget.RecyclerView
|
import androidx.recyclerview.widget.RecyclerView
|
||||||
|
import com.simplemobiletools.commons.dialogs.ConfirmationDialog
|
||||||
import com.simplemobiletools.commons.dialogs.CreateNewFolderDialog
|
import com.simplemobiletools.commons.dialogs.CreateNewFolderDialog
|
||||||
import com.simplemobiletools.commons.dialogs.FilePickerDialog
|
import com.simplemobiletools.commons.dialogs.FilePickerDialog
|
||||||
import com.simplemobiletools.commons.extensions.*
|
import com.simplemobiletools.commons.extensions.*
|
||||||
|
@ -392,12 +393,21 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
||||||
private fun checkOTGPath() {
|
private fun checkOTGPath() {
|
||||||
Thread {
|
Thread {
|
||||||
if (!config.wasOTGHandled && hasPermission(PERMISSION_WRITE_STORAGE) && hasOTGConnected() && config.OTGPath.isEmpty()) {
|
if (!config.wasOTGHandled && hasPermission(PERMISSION_WRITE_STORAGE) && hasOTGConnected() && config.OTGPath.isEmpty()) {
|
||||||
config.wasOTGHandled = true
|
|
||||||
getStorageDirectories().firstOrNull { it.trimEnd('/') != internalStoragePath && it.trimEnd('/') != sdCardPath }?.apply {
|
getStorageDirectories().firstOrNull { it.trimEnd('/') != internalStoragePath && it.trimEnd('/') != sdCardPath }?.apply {
|
||||||
|
config.wasOTGHandled = true
|
||||||
val otgPath = trimEnd('/')
|
val otgPath = trimEnd('/')
|
||||||
config.OTGPath = otgPath
|
config.OTGPath = otgPath
|
||||||
config.addIncludedFolder(otgPath)
|
config.addIncludedFolder(otgPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (config.OTGPath.isEmpty()) {
|
||||||
|
runOnUiThread {
|
||||||
|
ConfirmationDialog(this, getString(R.string.usb_detected), positive = R.string.ok, negative = 0) {
|
||||||
|
config.wasOTGHandled = true
|
||||||
|
showOTGPermissionDialog()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}.start()
|
}.start()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue