Monday, 15 September 2014

java - Retrieve Details Such as MCC,MNC,LAC,CellID -



java - Retrieve Details Such as MCC,MNC,LAC,CellID -

is possible next info of incoming number in android

mcc mnc lac cell id

i have tried code

telephonymanager tel = (telephonymanager) getsystemservice(context.telephony_service); string networkoperator = tel.getnetworkoperator(); if (networkoperator != null) { mcc = integer.parseint(networkoperator.substring(0, 3)); mnc = integer.parseint(networkoperator.substring(3)); }

it returns details of current sim, want find incoming number

this tricky need implment application in user's phone also. because when getting phone call user msisdn through can not gwt details. there should app on other users mobile trigger event in case makes call, app can fetch mcc.mnc , cell id , can send via sms called party , called party can process sms details. simple logic if want spy have install @ end.

java android

No comments:

Post a Comment