I am just a newbie on that things and I want to turn python to apk with android studio or whatever. I don’t really need anything to complex, I just want to open my codes output gui (I used turtle) when I open the app. Nothing else, thats all. It is probably complex process so you can just give me
Tag: apk
How to install an Android .APK using Python code?
Is there a way to programmatically install an Android .apk in Python? Could you please show me how? I’m new to Python. Thanks in advance. Answer As @Swing mentioned in his comment, subprocess.call(“adb install path-to-file.apk “) solves the issue.