I added GSM support to the Android emulator (AVD), but still can not find the telephony function. I checked a few steps below:
boolean isTelephony = getPackageManager().hasSystemFeature(PackageManager.FEATURE_TELEPHONY);
isTelephony - false.
FeatureInfo[] featureList = pm.getSystemAvailableFeatures();
featureList does not contain "android.hardware.telephony".
Are there any steps after adding GSM support?
thanks
source share