There is no telephony function in AVD with GSM support

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

+6
source share
1 answer

You can use Genymotion - their emulators offer telephony.

0
source

Source: https://habr.com/ru/post/908778/


All Articles