check when your application is opened for the first time
TelephonyManager tm = (TelephonyManager)
getSystemService(Context.TELEPHONY_SERVICE);
String simID = tm.getSimSerialNumber();
use it using BroadcastReceiver with BOOT_COMPLETED. Light stuff go ahaed
source
share