Android 应用程序未显示在 Market 中。兼容性问题

发布于 2025-01-06 22:40:33 字数 2049 浏览 2 评论 0原文

我在 Android Market 上看不到我的应用程序。如果我尝试使用我的电脑在 Android 市场在线检查它,我可以找到我的应用程序,但如果我尝试下载弹出窗口,告诉我该应用程序与我的设备不兼容。我有三星 Galaxy S2 (i9100) 和华为 Ideos U8150。两者都存在于 android-market-publish 的兼容性表中。

我对 android manifest.xml 做了很多更改,但没有得到积极的结果。我尝试更改屏幕选项、sdk 版本选项等。

应用程序是使用 Sdk 版本 10 (2.3) 构建的。

这是我的 Android 清单:

<?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>

更新: 要解决问题,请进入您的 android-market-publish==> 产品详细信息。在发布选项选项卡中,您必须停用内容保护。 (为了保护您的应用程序,您应该使用许可系统)...您的应用程序终于在 Android 市场上展示了。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文