Strange behavior when compiling in Bulldozer with different composition of "requirements" #52
Unanswered
Monsterbrony
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the "Buildozer.spec" file, in the "requirements" column, I need to set the following requirements:
python3,kivy,kivymd,googletrans,pyAesCrypt,requests,pillow,opencv-python,beautifulsoup4,lxml,pydub,ffmpeg-downloader,pygame,openpyxl,xlsxwriter,exif,colormath,psutil,rsa,selenium,mutagen,matplotlib,chardet,setuptools,httpx,cryptographyBut it gives me a compilation error. This has something to do with the number of modules I specify, or their sequence, or their incompatibility with each other (I'm not sure if there might be an incompatibility, because on Windows and Linux all these dependencies work without conflicts). I managed to compile the APK with the following modules:
python3,kivy,kivymd,googletrans,pyAesCrypt,requests,pillow,pydub,ffmpeg-downloader,openpyxl,xlsxwriter,exif,psutil,rsa,matplotlib,chardet,setuptools,httpx,cryptographyI figured out the problematic modules that couldn't be enabled by adding them to the requirements one at a time.:
opencv-python,beautifulsoup4,colormath,selenium,mutagen,lxml,pygameWhat is strange is that I managed to compile all these problematic modules, except
lxmlandpygame, in the following way:opencv-python(as part of requirements:python3,kivy,kivymd,opencv-python- compiles normally)beautifulsoup4(as part of requirements:python3,kivy,kivymd,beautifulsoup4- compiles normally)colormath(as part of requirements:python3,kivy,kivymd,colormath- compiles normally)selenium(as part of requirements:python3,kivy,kivymd,selenium- compiles normally)mutagen(as part of requirements:python3,kivy,kivymd,mutagen- compiles normally)lxml(the presence of a short composition of requirements did not save)pygame(the presence of a short composition of requirements did not save)But this does not solve my problem, I need all these modules in a single APK, not individually. What should I do??
Beta Was this translation helpful? Give feedback.
All reactions