Kivy to apk issue library

Viewed 31

Hello I want to convert kivy app to apk application but I was imported some librarys another kivy the question is the lib can be run on android such as cryptography , requests , sockets or specific library will be run or not run another library just kivy

And if not there are methods to run this library in apk ? Like this .. This library will be run ?? " import requests import cryptography from kivy.app import App "

2 Answers

Hey Dr-shell, It's very easy to run almost any library in your applications. Just add them in the requirements section of your buildozer.spec file.

For example:-

requirements = kivy, requests, cryptography

For more clarification Please refer to Buildozer Docs

Related