forked from organicmaps/organicmaps
[android] Don't ignore /storage/emulated
Environment.isExternalStorageEmulated() throws IllegalArgumentException on some Androids. Don't call isExternalStorageEmulated() and don't ignore emulated storage. Fixes #538 Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
parent
dff0818148
commit
a1e5007347
1 changed files with 12 additions and 1 deletions
|
@ -158,7 +158,18 @@ public class StoragePathManager
|
|||
// then there is little benefit to apps storing data here instead of the private directories
|
||||
// returned by Context#getFilesDir(), etc.
|
||||
//
|
||||
if (!Environment.isExternalStorageEmulated(dir))
|
||||
boolean isStorageEmulated;
|
||||
try
|
||||
{
|
||||
isStorageEmulated = Environment.isExternalStorageEmulated(dir);
|
||||
}
|
||||
catch (IllegalArgumentException e)
|
||||
{
|
||||
// isExternalStorageEmulated may throw IllegalArgumentException
|
||||
// https://github.com/organicmaps/organicmaps/issues/538
|
||||
isStorageEmulated = false;
|
||||
}
|
||||
if (!isStorageEmulated)
|
||||
candidates.add(dir);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue