Android中的qpython让我的权限被拒绝'在尝试subprocess.Popen时

时间:2016-02-24 13:12:58

标签: android python subprocess qpython

我正在尝试使用鳕鱼引擎为Android构建国际象棋GUI。

但每当我尝试使用子进程时,我都会收到权限被拒绝错误

我不知道如何给qpython任何许可,因为我是编程的初学者。

我知道我在这里遗漏了什么,我该怎么办?

顺便说一下,我的android已经扎根了,如果这有帮助:)

1 个答案:

答案 0 :(得分:1)

你想要运行什么命令?

'ls'无需生根即可使用。

#qpy:http://qpython.com/s/sample.py
try:
    import androidhelper
    import subprocess

    droid = androidhelper.Android()
    s = subprocess.check_output("ls")
    droid.dialogCreateAlert("title", s)
    droid.dialogSetPositiveButtonText("Yes")
    droid.dialogSetNegativeButtonText("No")
    droid.dialogShow() 
except:
    print("Hello, Please update to newest QPython version from (http://play.qpython.com/qrcode-python.html) to use this feature")