My App isn't Compatible with Nexus 7 on Google

2019-04-08 08:29发布

Hii i have submitted an app to playstore but it isn't compatible with Nexus here is my Manifest My App is on List of supported Devices in the Google Play enter image description here

and when i check the same in the nexus device it is not at all visible on Search

enter image description here

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

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

<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.GET_ACCOUNTS"  />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />
<uses-permission android:name="android.permission.PREVENT_POWER_KEY"  />
<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.location" android:required="false"/>
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>
<uses-permission
    android:name="android.permission.FLASHLIGHT"
    android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
    android:protectionLevel="normal"
    android:required="false" />

I Have Searched in google and did necessary Modifications to Manifest still i don't know why my app isn't compatible with nexus 7

please help me

Thanks In Advance

10条回答
做个烂人
2楼-- · 2019-04-08 08:34

You are declaring the flashlight permission twice. And the first time you aren't specifying that it is not required.

<uses-permission android:name="android.permission.FLASHLIGHT" />

This is probably conflicting with the second declaration.

<uses-permission
    android:name="android.permission.FLASHLIGHT"
    android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
    android:protectionLevel="normal"
    android:required="false" />

Try removing the first one and see what happens.

查看更多
ら.Afraid
3楼-- · 2019-04-08 08:38

You should define the support screens feature in your manifest as below which will allow to support nexus 7:

<supports-screens android:smallScreens="true"
              android:normalScreens="true"
              android:largeScreens="true"
              android:xlargeScreens="true"
              android:requiresSmallestWidthDp="600" /> 
查看更多
\"骚年 ilove
4楼-- · 2019-04-08 08:39

May be you need to add this line also since you are using READ_PHONE_STATE permission

查看更多
何必那么认真
5楼-- · 2019-04-08 08:40
  • uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19" in manifest


查看更多
爷的心禁止访问
6楼-- · 2019-04-08 08:47

The problem doesn't seem to be related to your listing on the app store. According to the console your application is compatible with the Nexus 7.

The first thing I would suggest is checking appt.

Next, my guess is that either the Play Store hasn't updated the listing yet or your device is not identifying itself appropriately.

查看更多
甜甜的少女心
7楼-- · 2019-04-08 08:48

According to this post: Nexus 7 Support for Android Application Manifest Assembly

Nexus 7 cannot support <uses-permission android:name="android.permission.CAMERA" />.

查看更多
登录 后发表回答