Skip to content Skip to sidebar Skip to footer

Kivy Opencv Android

I'm trying to build an example Android app based on Kivy and OpenCv: import kivy from kivy.uix.button import Button import cv2 kivy.require('1.0.6') from kivy.app import App fro

Solution 1:

To solve the immediate crash when running the apk on the phone, the buildozer.spec file must be setup as follows:

[app]title = MyTest

package.name = kivycrash2

package.domain = org.test

source.dir = .

source.include_exts = py,png,jpg,kv,atlas

version = 0.1requirements =  kivy, numpy, opencv

orientation = landscape

as suggested by @Fins

Thank you.

Post a Comment for "Kivy Opencv Android"