2012-09-07 2 views
1

apk 파일을 Nexus 7 (Jelly Bean)으로 보냈습니다. 나는 그것을 설치하려고하면 경고 메시지가 나타납니다. "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 이메일을 통해 보내진 항목을 내 교환 전자 메일 계정으로 열지 않습니다.

대신 내 Gmail 계정으로 보내보십시오. 이는 항상 저에게 효과적입니다.

3

앱 또는 Nexus 7에 문제가 없습니다. Jelly Bean의 Mail 앱입니다. Motorola Xoom 4.1에서도 마찬가지입니다. Matt가 제안했듯이 Gmail 앱은 .apk를 처리하는 방법을 알고 있습니다.

+0

감사합니다. 훌륭한 아이디어! – Ron

관련 문제