I have two apps listed on the marketplace. One of them is a free demo
application, and the second is a second key application that unlocks
the full version of the first application. I received a report from a
user that the demo installs on their Huawei, but the market lists they
application as "incompatible". I haven't received any other reports of
this, and can't find anything useful on Google. The two manifest xmls
are below, the demo app first and the key app second. Could this be
caused by the check license permission?

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
    package="..."
    android:versionCode="3"
    android:versionName="1.1">
    <application ...>
    </application>
    <uses-sdk android:minSdkVersion="7" />
    <uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package=...
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="7"/>
    <uses-permission android:name="com.android.vending.CHECK_LICENSE" /
>
    <application ...
    </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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to