Beta testing and publishing issues on Google Play

Two days ago, I published my application on Google Play as a beta version, and I added a group of testers to it. They can choose, but the application is still not visible in the Google Play application, and from the Internet I see that a lot of incorrect information is connected with it.

Current version: device dependent
What does it mean?

Requires Android: 1.6 and up
This is not true as we used

<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="17" /> 

in the manifest and

 target=android-16 

in project.properties

Size: device dependent
How can I provide this information?

In addition, the Google Play web interface still says that this application is not compatible with the device I used to develop it! (Nexus 7).

What am I doing wrong?

+6
source share
1 answer

I solved the compatibility issue with my Nexus 7.
This seems to be a bug on Google Play regarding the supported screen sizes and camera resolutions. This is what I added:

 <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" android:required="false" /> <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/> <uses-feature android:name="android.hardware.usb.host" android:required="false" /> <compatible-screens> <screen android:screenSize="normal" android:screenDensity="ldpi" /> <screen android:screenSize="normal" android:screenDensity="mdpi" /> <screen android:screenSize="normal" android:screenDensity="hdpi" /> <screen android:screenSize="normal" android:screenDensity="xhdpi" /> <screen android:screenSize="large" android:screenDensity="ldpi" /> <screen android:screenSize="large" android:screenDensity="mdpi" /> <screen android:screenSize="large" android:screenDensity="hdpi" /> <screen android:screenSize="large" android:screenDensity="xhdpi" /> <screen android:screenSize="xlarge" android:screenDensity="ldpi" /> <screen android:screenSize="xlarge" android:screenDensity="mdpi" /> <screen android:screenSize="xlarge" android:screenDensity="hdpi" /> <screen android:screenSize="xlarge" android:screenDensity="xhdpi" /> <screen android:screenSize="large" android:screenDensity="213" /> </compatible-screens> 
+1
source

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


All Articles