1

这是从 Play 商店下载我的应用程序的链接:

https://play.google.com/store/apps/details?id=com.dgolder.BCDining

当我尝试安装它时收到 404,但我不确定是什么原因造成的。我也会把我的清单放在这里,我可以提供任何其他信息。

任何见解将不胜感激!

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.dgolder.BCDining"
    android:versionCode="3"
    android:versionName="1.0" >
    <uses-sdk android:minSdkVersion="11" />
    <uses-permission android:name="android.permission.INTERNET" />
    <application
        android:icon="@drawable/logo"
        android:label="@string/app_name" >
        <activity
            android:name="me.activity.DiningExpList"
            android:theme="@android:style/Theme.NoTitleBar"
            >            
        </activity>
        <activity
            android:name="me.activity.DiningActivity"
            android:theme="@android:style/Theme.NoTitleBar"
         >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
4

1 回答 1

0

您是使用浏览器还是使用市场应用程序打开链接?看到这个问题:市场链接给出错误 404

于 2012-04-19T17:53:27.367 回答