I would like to be able to launch my app after installation with ant just as happens when pressing the run button in eclipse.
Is there an existing ant task after creating a project on the command line or is there a command I could execute with ant?
executing
adb shell am start -a android.intent.action.MAIN -n <Package_name>/.<Activity>from ant should launch your app.ofcourse you need to build and install the app trying to start the app…you can use android build xml to build and use “adb install ” to install the app…