buildozer

buildozer + Cython + C++ library: dlopen failed: cannot locate symbol symbol-name referenced by module.so

吃可爱长大的小学妹 提交于 2021-01-05 12:53:34
问题 phase_engine.so tries to use _ZTINSt6__ndk18ios_base7failureE and can't find it: 11-08 19:59:00.629 25777 25823 I python : Traceback (most recent call last): 11-08 19:59:00.629 25777 25823 I python : File "/home/sonoflilit/phase/phase/.buildozer/android/app/main.py", line 14, in <module> 11-08 19:59:00.629 25777 25823 I python : ImportError: dlopen failed: cannot locate symbol "_ZTINSt6__ndk18ios_base7failureE" referenced by "/data/data/il.co.loris.phase/files/app/_python_bundle/site-packages

buildozer + Cython + C++ library: dlopen failed: cannot locate symbol symbol-name referenced by module.so

自古美人都是妖i 提交于 2021-01-05 12:47:47
问题 phase_engine.so tries to use _ZTINSt6__ndk18ios_base7failureE and can't find it: 11-08 19:59:00.629 25777 25823 I python : Traceback (most recent call last): 11-08 19:59:00.629 25777 25823 I python : File "/home/sonoflilit/phase/phase/.buildozer/android/app/main.py", line 14, in <module> 11-08 19:59:00.629 25777 25823 I python : ImportError: dlopen failed: cannot locate symbol "_ZTINSt6__ndk18ios_base7failureE" referenced by "/data/data/il.co.loris.phase/files/app/_python_bundle/site-packages

buildozer + Cython + C++ library: dlopen failed: cannot locate symbol symbol-name referenced by module.so

元气小坏坏 提交于 2021-01-05 12:47:39
问题 phase_engine.so tries to use _ZTINSt6__ndk18ios_base7failureE and can't find it: 11-08 19:59:00.629 25777 25823 I python : Traceback (most recent call last): 11-08 19:59:00.629 25777 25823 I python : File "/home/sonoflilit/phase/phase/.buildozer/android/app/main.py", line 14, in <module> 11-08 19:59:00.629 25777 25823 I python : ImportError: dlopen failed: cannot locate symbol "_ZTINSt6__ndk18ios_base7failureE" referenced by "/data/data/il.co.loris.phase/files/app/_python_bundle/site-packages

How to video stream using KIVY for Android

坚强是说给别人听的谎言 提交于 2020-12-13 03:37:15
问题 How do I video stream using Kivy Python deployed to Android 9.0 tablet with Buildozer? My goal is load an IP Camera (I am using some public IP camera for testing) and to draw on the frame before displaying it in the application. OpenCV VideoCapture does not work on Android so I am using Kivy Camera/Video/VideoPlayer. What I came up through research is to use self.camera = Video(source="http://158.58.130.148:80/mjpg/video.mjpg", state='play') which simply enough works on my Ubuntu machine just

How to video stream using KIVY for Android

时光总嘲笑我的痴心妄想 提交于 2020-12-13 03:36:24
问题 How do I video stream using Kivy Python deployed to Android 9.0 tablet with Buildozer? My goal is load an IP Camera (I am using some public IP camera for testing) and to draw on the frame before displaying it in the application. OpenCV VideoCapture does not work on Android so I am using Kivy Camera/Video/VideoPlayer. What I came up through research is to use self.camera = Video(source="http://158.58.130.148:80/mjpg/video.mjpg", state='play') which simply enough works on my Ubuntu machine just

How to video stream using KIVY for Android

懵懂的女人 提交于 2020-12-13 03:35:08
问题 How do I video stream using Kivy Python deployed to Android 9.0 tablet with Buildozer? My goal is load an IP Camera (I am using some public IP camera for testing) and to draw on the frame before displaying it in the application. OpenCV VideoCapture does not work on Android so I am using Kivy Camera/Video/VideoPlayer. What I came up through research is to use self.camera = Video(source="http://158.58.130.148:80/mjpg/video.mjpg", state='play') which simply enough works on my Ubuntu machine just

buildozer - C compiler cannot create executables

我们两清 提交于 2020-11-30 00:28:49
问题 When I run buildozer -v android debug It ends with this error [INFO]: -> running configure --host=arm-linux-androideabi --prefix=/home/astrilaa/kivycalc/.buildozer/android/platform/build-armeabi-v7a/...(and 94 more) working: See `config.log' for more details Exception in thread background thread for pid 14805: Traceback (most recent call last): File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner self.run() File "/usr/lib/python3.8/threading.py", line 870, in run self._target

buildozer - C compiler cannot create executables

狂风中的少年 提交于 2020-11-30 00:28:25
问题 When I run buildozer -v android debug It ends with this error [INFO]: -> running configure --host=arm-linux-androideabi --prefix=/home/astrilaa/kivycalc/.buildozer/android/platform/build-armeabi-v7a/...(and 94 more) working: See `config.log' for more details Exception in thread background thread for pid 14805: Traceback (most recent call last): File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner self.run() File "/usr/lib/python3.8/threading.py", line 870, in run self._target

kivy Urlrequest with callback throws error on mobile, but not on laptop, why?

泄露秘密 提交于 2020-11-29 19:12:12
问题 The below is the COMPLETE code. The output when I run this below simple kivy code on my laptop is "Hello from Kivy Success". While the output when I run using buildozer android debug deploy run from ubuntu to my mobile is "Hello from Kivy Error". I even added cacert.pem in my project folder, used ca_file=where(),verify=True. That too didn't help. Why does UrlRequest fail on my mobile? Please help me with a solution. from kivy.app import App from kivy.uix.floatlayout import FloatLayout from

kivy Urlrequest with callback throws error on mobile, but not on laptop, why?

送分小仙女□ 提交于 2020-11-29 19:03:58
问题 The below is the COMPLETE code. The output when I run this below simple kivy code on my laptop is "Hello from Kivy Success". While the output when I run using buildozer android debug deploy run from ubuntu to my mobile is "Hello from Kivy Error". I even added cacert.pem in my project folder, used ca_file=where(),verify=True. That too didn't help. Why does UrlRequest fail on my mobile? Please help me with a solution. from kivy.app import App from kivy.uix.floatlayout import FloatLayout from