I solved this by adding an explicit uses-screens section to the manifest, 
and setting minsdk to 9 (required because xlargescreens is not supported in 
8).

    <supports-screens android:smallScreens="true" 

          android:normalScreens="true" 

          android:largeScreens="true"

          android:xlargeScreens="true"

          android:anyDensity="true" />

I still don't know what Google changed to make this necessary.

Julian
On Monday, May 20, 2013 9:50:39 AM UTC-7, jjbunn wrote:
>
> I uploaded a new APK for one of my apps on Friday. There was no change 
> to the manifest or build settings for the app, but some of my 
> customers using tablets like the Note 10 and Nexus 10 tell me that the 
> new APK is marked as incompatible in the Google Play store, whereas 
> they were happily using the previous version on those devices. 
>
> In my Android Developer Console, the APK is marked as being compatible 
> with those tablets (in fact it is marked as compatible with over 2000 
> devices, and incompatible with 0 (zero)). 
>
> So I am very puzzled what has happened, and would really appreciate 
> some help :-) 
>
> Here is the Manifest. I build with the Android 2.2 SDK. 
>
> <?xml version="1.0" encoding="utf-8"?> 
> <manifest xmlns:android="http://schemas.android.com/apk/res/android"; 
>       package="com.xxx.xxx.xxx" 
>       android:installLocation="auto" 
>       android:versionCode="76" android:versionName="5.9.2"> 
>            <uses-permission 
> android:name="android.permission.RECORD_AUDIO"/> 
>            <uses-permission 
> android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> 
>            <uses-permission 
> android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 
>            <uses-sdk android:minSdkVersion="4"/> 
>     <application android:icon="@drawable/icon" 
>         android:label="@string/app_name" 
>         android:theme="@android:style/Theme.NoTitleBar" > 
>         <activity android:name=".MyApp" 
>                   android:label="@string/app_name"> 
>             <intent-filter> 
>                 <action android:name="android.intent.action.MAIN" /> 
>                 <category 
> android:name="android.intent.category.LAUNCHER" /> 
>             </intent-filter> 
>         </activity> 
>     </application> 
> </manifest> 
>
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to