You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I've made an apk with just a label using Kivy, it worked on my android device but, when I used some modules like firebase-admin, requests, json, cryptography,etc in my Kivy app then it works on my PC but crashes on my android device after converting to apk. After some research I've come to know that, we need to mention the modules used in the buildozer.spec file. But, I don't know how to mention them correctly.
Here are my imports in the Python file
import array
import random
import threading
import firebase_admin
from firebase_admin import credentials
from firebase_admin import auth, db
from kivy.lang import Builder
from kivymd.app import MDApp
from kivy.uix.screenmanager import FallOutTransition, Screen, ScreenManager, SlideTransition, NoTransition
from kivy.utils import platform
from kivymd.toast import toast
import string
from kivy.clock import Clock
import json, requests
from cryptography.fernet import Fernet
👋 We use the issue tracker exclusively for bug reports and feature requests. However, this issue appears to be a support request. Please use our support channels to get help with the project.
If you're having trouble installing or using python-for-android, maybe you could be interested in our quickstart guide.
Let us know if this comment was made in error, and we'll be happy to reopen the issue.
When I've made an apk with just a label using Kivy, it worked on my android device but, when I used some modules like firebase-admin, requests, json, cryptography,etc in my Kivy app then it works on my PC but crashes on my android device after converting to apk. After some research I've come to know that, we need to mention the modules used in the buildozer.spec file. But, I don't know how to mention them correctly.
Here are my imports in the Python file
Here is my buildozer.spec file
The text was updated successfully, but these errors were encountered: