I would like to write to /etc/hosts in my Kivy app, and I've surely a rooted device to test. I tried several ways but always get my app exit without any warning or error.
I've tried:
subprocess.Popen("su -c touch /etc/hosts", shell = True)
subprocess.Popen("su -c bash -c touch /etc/hosts", shell = True)
subprocess.Popen(["su", "-c", "bash -c touch /etc/hosts"])
and several combinations of them. Every time I can get the su app message box asking me for permission and I pressed "Allow", but my app exits after that.
EDIT: logcat output is at http://pastebin.com/YMT5Vxra
Many thanks if anyone can give any suggestion!
time.sleep(5). Your program might be exiting beforetouchfinishes running. – FakeRainBrigand Dec 5 '11 at 13:03