1

为了了解游戏应用的实现过程,所以导入了游戏项目,但是当我运行项目时,我在 logcat 中收到此错误消息“未找到启动器活动!启动只会同步设备上的应用程序包!” 甚至编辑了我的清单,但仍然可以得到输出“Manifeast.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jamescho.androidgame"
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" >
</application>

4

2 回答 2

1

未找到启动器活动!

将活动声明为启动器,它在应用程序启动时最初打开并在 AndroidManifest.xml 中声明所有活动

<activity android:name=".ActitityName" android:label="@string/app_name" android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
</activity>
于 2013-03-27T10:12:25.413 回答
0

将活动声明为启动器,它在应用程序启动时最初打开并在 AndroidManifest.xml 中声明所有活动

于 2013-08-12T07:51:20.593 回答