Device Compatibility Issue with Samsung Galaxy Mini

前端 未结 2 1031
梦毁少年i
梦毁少年i 2021-01-27 19:47

I have an app in the android market that is reporting incomparability and so cannot be installed on a Samsung Galaxy Mini. Developer Console says that it is due to my manifest s

相关标签:
2条回答
  • 2021-01-27 20:30

    I recently came around a strong problem with: Samsung Galaxy Mini and Samsung Galaxy Ace

    I followed all the posts that are in this thread, all very interesting. It solved some problems, but yet no luck with these 2 devices.

    In the end, I ended up disactivating a simple feature:

    <use-feature android:name="android.hardware.camera.autofocus" />
    

    I actually didn't "really" need that feature. Paf, my app appeared for these 2 devices right after the new update. :)

    So... My piece of advice is: Use use-feature autofocus ONLY if your app depends on it

    0 讨论(0)
  • 2021-01-27 20:38

    Are there any tools to help diagnose device and app compatibility.

    Try MOTODEV's App Validator. They won't tell you that you will have problems with the Samsung Galaxy Mini, but if your problems with the Mini would also cause problems with some Motorola device, the errors it tells you may help clear that up.

    What is the problem with my manifest?

    The Samsung Galaxy Mini may be considered a small-screen device. Try adding a <supports-screens> element declaring specifically what screen sizes you support, including small screens.

    Also, please seriously reconsider your <uses-sdk> element, particularly your chosen android:targetSdkVersion. Your app will look out of date on Android 3.0+ devices, and there are already more of those than there are Android 1.5 (a.k.a., API Level 3) devices. If you set android:targetSdkVersion to 11 or higher, your app will still run on older devices, but you will adopt the Honeycomb look-and-feel (holographic theme for widgets, action bar, etc.), which will make your app look like it belongs on the newer devices.

    0 讨论(0)
提交回复
热议问题