Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App is incompatible with device

Tags:

android

I have been developing my app with the Samsung GT-P3113 and now, when I have published the app, I am unable to install it through Google Play Store.

When I check compatible devices through the Developer Console, I am able to see my device, but I am unable to install it from my device due to the following error:

No carrier Samsung GT-P3113

This app requests access to these permissions:

Your location approximate location (network-based) precise location (GPS and network-based)

Network communication full network access view network connections

Phone calls directly call phone numbers

Storage modify or delete the contents of your USB storage

Your accounts read Google service configuration

System tools test access to protected storage

I am unsure as to what the error might be. Any help would be much appreciated.

like image 272
user3681650 Avatar asked Jul 14 '26 14:07

user3681650


1 Answers

You are requesting the CALL_PHONE permission. Tablets usually cannot place phone calls. You probably need to add:

<uses-feature android:name="android.hardware.telephony" android:required="false" />

as is described in the documentation.

like image 97
CommonsWare Avatar answered Jul 16 '26 06:07

CommonsWare