2012-09-07 3 views
1

J'ai envoyé le fichier apk à Nexus 7 (Jelly Bean). J'essaie de l'installer, puis je reçois l'alerte en disant "There is no installed app that can open this attachment. try downloading an appropriate app from android market." Pourquoi ai-je ce message et que puis-je faire pour le faire fonctionner?android - nexus 7 ne supporte pas la pièce jointe

fichier Manifest:

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

Répondre

2

Je ne sais pas si cela est une réponse en tant que telle, mais vous découvrirez peut-être que ce n'est pas votre APK qui est l'origine du problème - mon N7 refuse d'ouvrir quoi que ce soit envoyé par e-mail à mon compte e-mail Exchange. Essayez plutôt de l'envoyer à votre compte Gmail - cela fonctionne toujours pour moi.

3

Ce n'est pas un problème avec votre application ou avec le Nexus 7. C'est l'application Mail dans Jelly Bean. La même chose arrive sur le Motorola Xoom avec 4.1. Comme Matt l'a suggéré, l'application Gmail sait comment gérer un .apk.

+0

merci, bonne idée! – Ron

Questions connexes