Merge pull request #6658 from Dirk-Sandberg/iOS-garden-path-fix

Fixes incorrect path to kivy garden libs on iOS
This commit is contained in:
matham 2019-12-21 20:10:59 -05:00 committed by GitHub
commit 662985b7c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -140,6 +140,7 @@ import sys
import imp
from os.path import dirname, join, realpath, exists, abspath
from kivy import kivy_home_dir
from kivy.utils import platform
import kivy
#: system path where garden modules can be installed
@ -151,6 +152,12 @@ if getattr(sys, 'frozen', False) and getattr(sys, '_MEIPASS', False):
garden_app_dir = join(realpath(sys._MEIPASS), 'libs', 'garden')
else:
garden_app_dir = join(realpath(dirname(sys.argv[0])), 'libs', 'garden')
#: Fixes issue #4030 in kivy where garden path is incorrect on iOS
if platform == "ios":
from os.path import join, dirname
import __main__
main_py_file = __main__.__file__
garden_app_dir = join(dirname(main_py_file), 'libs', 'garden')
class GardenImporter(object):