Why doesn't this work? Is it blocked in cn1?
Process process = Runtime.getRuntime().exec(command);
Why doesn't this work? Is it blocked in cn1?
Process process = Runtime.getRuntime().exec(command);
Devices don't support executing arbitrary applications. Applications running within a mobile device are restricted to their own isolated environment and can't even access files created by different applications without going thru amazing hoops so this will not work on any device.
I'm assuming you are trying to invoke an external app which is something you can't even do in Android, you can however invoke a native app as explained here: Is it possible to invoke other mobile app from a code name one app
By using something like Display.execute.