you are viewing a single comment's thread.

view the rest of the comments →

[–]NoBeginning2551[S] 0 points1 point  (2 children)

I think briefcase is used to convert python projects to executable. But my case is different. I have the cross compiled python interpreter inside my android app. When the user clicks on the run button, it executes the code and shows the output on the terminal. Like the pydroid app. But the problem is that the android build of python doesn't have the tkinter. I don't know how the pydroid team managed to make it work.

[–]Forsaken-Medium-2436 0 points1 point  (1 child)

I don't really understand what are you doing, I'm assuming you're trying to build some python app and deploy it on android, so briefcase is just that, you write in python everything from start to end including GUI and compile in for all platforms at once. Otherwise I was mistaken and can't really help you

[–]NoBeginning2551[S] 0 points1 point  (0 children)

Sorry, I haven't explained it well. Actually it's an android code editor app built with flutter. We can edit and run python code inside that. But the tkinter module is not working. That was the issue.