I want to run some apps on android with QPython3. So I tried but got permission error.
#-*-coding:utf8;-*-
#qpy:3
#qpy:console
import subprocess
yt = subprocess.Popen('/system/app/YouTube/YouTube.apk')
yt.wait()
print("done")
The result is following : (snip) "..../subprocess.py" line 1356, in _execute_child OSError : [Errno 13] Permissio denied
Help me please...