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.
Advertisement
Answer
As @Swing mentioned in his comment, subprocess.call("adb install path-to-file.apk ")
solves the issue.