I am trying to open calendar from my app and using the code below as i found it in this question :how can i open the calendar from my app? ...but getting following error
07-01 14:19:26.299: ERROR/AndroidRuntime(14167): Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {com.google.android.calendar/com.android.calendar.LaunchActivity}; have you declared this activity in your AndroidManifest.xml?
any help will be useful..
Intent i = new Intent();
ComponentName cn = new ComponentName("com.google.android.calendar", "com.android.calendar.LaunchActivity");
i.setComponent(cn);
startActivity(i);