mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Android Storage access:
- Added private storage as a fallback, if permissions not granted. - maybe will solve issue #284 with the next version.
This commit is contained in:
parent
a7e55513bd
commit
bd49171a4c
1 changed files with 5 additions and 1 deletions
|
@ -139,7 +139,11 @@ def getprefdir(package):
|
|||
from pysollib.kivy.LApp import get_platform
|
||||
plat = get_platform()
|
||||
if plat == 'android':
|
||||
os.environ['HOME'] = '/sdcard'
|
||||
from pysollib.kivy.androidperms import getStoragePerm
|
||||
if getStoragePerm():
|
||||
os.environ['HOME'] = '/sdcard'
|
||||
else:
|
||||
os.environ['HOME'] = '.'
|
||||
|
||||
if os.name == "nt":
|
||||
return win32_getprefdir(package)
|
||||
|
|
Loading…
Add table
Reference in a new issue