try: block around the suspected line identified here:
before:10-12 09:05:43.501 10388 10428 I python : File "/home/brent/git-projects/RaceCapture_App/.buildozer/android/platform/build/dists/racecapture/private/lib/python2.7/site-packages/kivy/app.py", line 780, in user_data_dir
10-12 09:05:43.501 10388 10428 I python : OSError: [Errno 2] No such file or directory: '/sdcard/racecapture'
Code: Select all
if not exists(data_dir):
os.mkdir(data_dir)
Code: Select all
if not exists(data_dir):
try:
os.mkdir(data_dir)
except:
data_dir = data_dir
Oddly, creating the folder in question - /sdcard/racecapture (from the adb shell), does not change the behaviour. It still results in os.mkdir throwing the "No such file or directory" exception.
My experience with Kivy is nil and android debugging not much better. I'm happy to pursue this more, but, I'll need some direction.
Rod.