1

我将 apk 文件发送到 Nexus 7(果冻豆)。我尝试安装它,然后我收到警告说"There is no installed app that can open this attachment. try downloading an appropriate app from android market."为什么我会收到此消息,我该怎么做才能使其正常工作?

清单文件:

< ?xml version="1.0" encoding="utf-8"?>
< manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.chessstopwatch"
    android:versionCode="1"
    android:versionName="1.0" >


< supports-screens android:anyDensity="true" />
    < uses-sdk android:minSdkVersion="7"  
          android:targetSdkVersion="8"/>
    < uses-permission android:name="android.permission.WAKE_LOCK"/>

    <application
        android:icon="@drawable/csw_icon"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
        <activity
            android:name=".ChessStopWatchActivity"
            android:screenOrientation="portrait"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity android:name=".ChessMoveScreen" android:screenOrientation="portrait">
                    </activity>
         <activity android:name=".CSW_Constants">
         </activity>

    </application>

< /manifest>

在此处输入图像描述

4

2 回答 2

3

无论是您的应用程序还是 Nexus 7,这都不是问题。它是 Jelly Bean 中的邮件应用程序。同样的事情也发生在带有 4.1 的摩托罗拉 Xoom 上。正如马特建议的那样,Gmail 应用程序确实知道如何处理 .apk。

于 2012-10-04T18:19:27.860 回答
2

我不知道这是否是这样的答案,但您可能会发现导致问题的不是您的 APK - 我的 N7 拒绝打开通过电子邮件发送到我的Exchange电子邮件帐户的任何内容。

尝试将其发送到您的 Gmail 帐户 - 这对我总是有效。

于 2012-09-07T11:06:35.887 回答