I am having issues with creating Kivy App with external libraries import.
1) I have tried creating apk using buildozer. The simple app like "hello world" works fine so it suggests my environment was set up properly. I have also tested a simple app with numpy import also works by specifying in the .spec file. But when I tried importing the libraries I wanted (ie: pydictionary and pyttsx), the .apk file was still created at the end, but when I tried to open it, it crashes.
2) I have also tested on Kivy Launcher, same thing happened basically. The .py with import from pydictionary and pyttsx crashes, while the simpler app with no import or with numpy import works.
How can I properly import external libraries in Kivy app?