I'm using android scripting environment with python (ASE), and I'd like to terminate the shell executing the script when the script terminates. Is there a good way to do this?

I have tried executing on the last line: os.system( 'kill %d' % os.getppid() )

but to no avail.

link|improve this question
feedback

2 Answers

You should use android.exit().

link|improve this answer
feedback

My guess is that the above answer ought to be android.Android().exit()

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.