1
0
Fork 0
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:
lufebe16 2022-12-05 15:19:14 +01:00
parent a7e55513bd
commit bd49171a4c

View file

@ -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)