Android app doesn't show in Market.Compatibility issue

被刻印的时光 ゝ 提交于 2019-12-24 17:19:04

问题


I can't see my application on Android Market. If i try to check it in android market online, using my pc, i'm able to find my application but if i try to download a popup tell me that the app is not compatible with my devices. I have a Samsung Galaxy S2 (i9100) and Huawei Ideos U8150. Both are present in the compatibility table in android-market-publish.

I did so many changes to android manifest.xml without positive result. I tried to change the screen options, sdk version options exc.

Application was build using Sdk version 10 (2.3).

This is my android manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="mypackage"
android:versionCode="7"
android:versionName="1.1" >
<supports-screens android:anyDensity="true" android:smallScreens="true"   android:largeScreens="true" android:normalScreens="true" android:resizeable="true"/>
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="10"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

<application
    android:icon="@drawable/pulsantegrande"
    android:label="@string/app_name" >
    <service android:name="mypackage.ForegroundService">
        <intent-filter>
            <action android:name="mypackage.ForegroundService" />

        </intent-filter>
    </service>

    <activity
        android:name="mypackage.Main"
        android:label="@string/app_name" 
        android:configChanges="keyboardHidden|orientation">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <receiver android:name="mypackage.BootReceiver" android:enabled="true" >
 <intent-filter>
    <action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>

</manifest>

UPDATE: To fix problem go into your android-market-publish==>product details. In publish option tab YOU MUST DEACTIVATE stuff protection. (to protect your application you should use licensing system) ...et voilá your application is finally show on android market.

来源:https://stackoverflow.com/questions/9337109/android-app-doesnt-show-in-market-compatibility-issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!