Shows that "your device is not compatible with this version" for my paid application on Nexus 7

I have two applications (free and paid) that are exactly the same, with the exception of showing ads and not showing.
I bought Nexus 7 and tried to download my applications on Google Play, it allows you to download the version for free, but the paid version shows: "your device is not compatible with this version."

The manifest file is exactly the same for both:

<uses-sdk android:minSdkVersion="11" /> <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="false" android:xlargeScreens="true" /> 

Any solutions?

+4
source share
4 answers

No, in one or two days he appears on the market again. I didnโ€™t have to do anything.
(Weird)

0
source

Check your permissions. If you use something like a camera, you need to say that it is not required, and then make sure your code checks it. I had to add the following line โ€œuses-featureโ€ to my manifest in order to get my application to work.

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

Then I used the following code to set the flag so that I would not call anything in the application that was trying to use the camera.

 PackageManager pm = this.getContext().getPackageManager(); Boolean hasFlashSupport = pm.hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH); 

Hope this helps.

+5
source

I ran into a similar problem with my application. After the changes helped.

 <compatible-screens> .... <!-- Special case for Nexus 7 --> <screen android:screenSize="large" android:screenDensity="213" /> </compatible-screens> 

Look at the answer fooobar.com/questions/147152 / ... and http://code.google.com/p/android/issues/detail?id=34076

+3
source

Does the Copy Protect setting change to Off? Jelly Bean has a new copy protection scheme (direct lock), which is incompatible with the old one and automatically turns on for paid applications.

+2
source

All Articles