有一个包含 2 个活动的简单应用程序。适用于 USB / SYNC,但是当我将其导出以获取 .apk 文件时,Mainfest.xml 会抛出对 2nd 的任何引用。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.easy"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Splash" 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=".StartingPoint" android:label="@string/app_name" >
<intent-filter>
<action android:name="com.example.easy.STARTINGPOINT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
第一个活动 (.Splash) 在编译期间被删除。我的第一个项目遇到了这个问题,所以我从一个非常简单的项目重新开始,看看它是一个持续的问题还是我的第一个项目。似乎是一个持续存在的问题。