Tuesday, October 4, 2011

[android-developers] App showing as not compatible after update

Hello,

After updating my App last saturday, customers started complaining the
Market is showing it as not compatible with devices that were fully
compatible before.

We haven't changed the manifest file at all and we are not filtering
any devices using the developer console. This affects a variety of
devices, including the Motorola Xoom, Samsung Galaxy 2, HTC Desire and
many others that are fully supported.

Our App uses OpenGL ES 2, I wonder if something has changed to do with
this at all in the Market Recently.

Does anyone have any ideas?

I'm pasting my manifest file:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.XXXX.XXXX"
android:versionCode="19" android:versionName="1.X>

<application android:label="@string/activity_name"
android:icon="@drawable/icon">
<activity android:name=".MyActivity" android:theme="@android:style/
Theme.NoTitleBar.Fullscreen"
android:launchMode="singleTask" android:configChanges="orientation|
keyboardHidden" android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

</activity>
</application>

<uses-feature android:glEsVersion="0x00020000" />
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
</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+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment