2012-09-07 53 views
1

我发送apk文件到Nexus 7(果冻豆)。我尝试安装它,然后我收到了警报"There is no installed app that can open this attachment. try downloading an appropriate app from android market."为什么我会收到此消息,我该如何才能使其工作?android-nexus 7不支持附件

清单文件:

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

enter image description here

回答

2

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

尝试将它发送到您的Gmail帐户,而不是 - 这总是适合我。

3

这不是您的应用程序或Nexus 7的问题。它是Jelly Bean中的邮件应用程序。摩托罗拉Xoom的4.1版本也会发生同样的情况。正如马特所言,Gmail应用程序确实知道如何处理.apk。

+0

谢谢,好主意! – Ron