Skip to content Skip to sidebar Skip to footer

How To Check Phone Calling Service Is Enable Or Not In Android Device?

I want to know that how to check that phone call service is enable or not in different devices, i have Micromax Funbook(p300) Tablet(Android 4.0.3), in which there is no calling se

Solution 1:

If calling service is not supported by tablet, google play won't allow the app to be installed on that tablet. Google Play internally checks for permissions which are supported by your device and the permissions the app is asking for, if they do not match, the app is shown as not compatible with your device. EDIT: Hence of course, you do not need to check if calling is supported by that device or not...


Solution 2:

Try this, if device doesn't have facility to make voice call then it must not be a phone.

TelephonyManager tm = (TelephonyManager)getSystemService(TELEPHONY_SERVICE);
String ableToMakePhoneCalls = tm.getVoiceMailNumber(); 

//check device for voicemail number (null means no voicemail number).
if(ableToMakePhoneCalls == null)
{ 
     //If the device does not have voicemail, then it must not be a phone. So it can't call. 
}   

Post a Comment for "How To Check Phone Calling Service Is Enable Or Not In Android Device?"