I can't install my app from Google Play on Nexus 7. It tells me that the device is not supported and in the unsupported devices I see a lot of tablets, even though I can install directly the .apk on the device and it works at native size.
The minSdkVersion is 7, I've tried with targetSdkVersion 8 and 17 and the result is the same.
What I'm doing wrong?
Is it because of any uses-permission?
UPDATE:The least of all permissions:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />