0

I have the following in /sdcard/sl4a/scripts/imo.py

import android
droid = android.Android()
droid.launch('com.imo.android.imoim')

And if I run it , it immediately exits. If there are other ways to launch applications from some sort of script, I'm open to suggestions.

Code-Apprentice
  • 81,660
  • 23
  • 145
  • 268
user8177349
  • 1
  • 1
  • 2

1 Answers1

0

That is pretty easy if you are using sl4a

import sl4a
droid=sl4a.Android()
droid.launch('com.imo.android.imoim')