简体   繁体   中英

This app is incompatible with Samsung GT-P3110

I am using Galaxy Tab 2 7.0 (GT-P3110) for developing my android app. After I publish app to Google Play Store, it said "This app is incompatible with your Samsung GT-P3110".

Here is my settings:

   <supports-screens
       android:largeScreens="true"
       android:normalScreens="true"
       android:smallScreens="true"
       android:anyDensity="true" />

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

What's wrong with it ? Anyone can help ?

I can download other apps in Google Play Store in my device.

Thanks.

将其添加到清单中以删除自动对焦功能:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM