Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android SmsProvider, what does ICC stand for?

Tags:

android

sms

icc

Specifically in the com/android/providers/telephony/SmsProvider.java

what does ICC stand for?

like image 369
random dude Avatar asked Feb 12 '11 21:02

random dude


2 Answers

ICC stands for Integrated Circuit Card (or, smart card). In this case, it looks like they use ICC to refer to the SIM card inside the phone, which is a smart card.

like image 138
andri Avatar answered Sep 23 '22 09:09

andri


ICC is for Sim messages. See ManageSimMessages.Java inside mms/ui package which handles this.

Also see framework/base/telephony/java/android/telephony/SmsManager.Java where it "ICC (Integrated Circuit Card) is the card of the device. For example, this can be the SIM or USIM for GSM."

like image 41
normalUser Avatar answered Sep 21 '22 09:09

normalUser