我将 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>