We are trying to show user the Ice cream Sandwich calendar view, when they want to add a new event. We can only test this in emulator.
The other problem is that we c
Make sure,you are not using 'visibilty' for ICS and JellyBean devices (apiLevel>=14)
Try this -
ContentValues values= new ContentValues(); int apiLevel = android.os.Build.VERSION.SDK_INT; if(apiLevel<14) values.put("visibility", 0);
Use visibility only if device version is less than 14(ICS)