After uploading my app to Google Play, I tried downloading it to my nexus 7 and didn't see the app. on top of it I got a suggestion in the console to enable it to tablets. What I have in my manifest is:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.GET_TASKS"/>
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
Now I assume it's because the SEND_SMS. the problem is, I want handsets to have sms feature, but not tablets.
When I tried:
<uses-feature android:name="android.permission.SEND_SMS" android:required="false"></uses-feature>
I got an exception on handset.
I looked at: Android app not available for some tablets in Google Play
Android app showing in Google Play for Phone but not for Google Play for Tablets
Android App is not visible on Google Play store for tablets
But non worked, what should I do?
Thx.