3

I uploaded my app to the market and they said that it isn't compatible with nexus 7 though it works fine in it. I read many questions regard this case such as, My App not supporting nexus 7 or App not available for Nexus 7 on Google Play. However, I don't think it is related to my problem because I don't use the camera permission in my app.

Here is my Manifest file (permissions & support-screens):

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


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

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

<application
    android:largeHeap="true"
    android:allowBackup="true"
    .....>

I am not sure if this is a duplicate issue but I really can't figure it out. Any tip will be greatly appreciated. Thanks in advance.

Community
  • 1
  • 1
Coderji
  • 7,655
  • 5
  • 37
  • 51

2 Answers2

1

Following the comments section:

Of Nexus 7 has Android 4.3 (API 18) - that's the reason.

By default it's with Android 4.1, but since it's a Nexus device, it might have 4.3 installed (which is API 18).

g00dy
  • 6,752
  • 2
  • 30
  • 43
-2

change your manifest to this..

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

becaue nexus 7 uses android api 18 that is latest JellyBean....

Prakhar
  • 2,270
  • 19
  • 26