launch gallery view of IP Cam Viewer

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", "GALLERY_VIEW" );

Launch the gallery 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