Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android calendar BroadcastReceiver host : com.android.calendar vs com.google.android.calendar

After looking around a bit, I've noticed there are 2 possible hosts for the Android calendar.
The first is com.android.calendar and the other is com.google.android.calendar.
I'm pretty sure it reflects the new standalone calendar Google released last year, but other than that I'm clueless.
What is the difference? When should I use the first and when the other?

like image 450
SagiLow Avatar asked Mar 19 '14 17:03

SagiLow


1 Answers

  • com.android.calendar is the AOSP calendar.
  • com.google.android.calendar is Google calendar.

If you want to interact with the phone calendar, you are interested by the the content provider from former.

like image 106
rds Avatar answered Sep 27 '22 16:09

rds