Action:
android.intent.action.MAIN
Input:
intent.addCategory( Intent.CATEGORY_LAUNCHER );
intent.setFlags( Intent.FLAG_ACTIVITY_NEW_TASK );
ComponentName cn = new ComponentName( "com.rcreations.WebCamViewerPaid", "com.rcreations.WebCamViewerPaid.IpCamViewerActivity" );
intent.setComponent( cn );
intent.putExtra( "selectView", "MATRIX_VIEW" );
Launch the matrix view of the IP Cam Viewer application.
For the free/Lite version, using the following component name instead:
ComponentName cn = new ComponentName( "com.rcreations.ipcamviewer", "com.rcreations.ipcamviewer.WebCamViewerActivity" );
For more info:
http://hit-mob.com/forums/viewtopic.php?f=8&t=697