gpt4 book ai didi

java - 未找到启动器 Activity 。启动只会同步设备上的应用程序包

转载 作者:行者123 更新时间:2023-12-01 13:51:35 24 4
gpt4 key购买 nike

我在启动测试应用程序时遇到错误,我是 Android 开发的新手,希望你们能帮助我。

这是我的 list 文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jhaydev.weirdgeeks"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.jhaydev.weirdgeeks.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.jhaydev.weirdgeeks.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
android:name="com.jhaydev.weirdgeeks.Menu"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.jhaydev.weirdgeeks.MENUA" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>

我收到以下错误:

[2013-11-11 22:59:16 - WeirdGeeks] Android Launch! [2013-11-11 22:59:16 - WeirdGeeks] adb is running normally. [2013-11-11 22:59:16 - WeirdGeeks] No Launcher activity found! [2013-11-11 22:59:16 - WeirdGeeks] The launch will only sync the application package on the device!

谢谢。

最佳答案

只需替换代码中的这一行:

 <intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

关于java - 未找到启动器 Activity 。启动只会同步设备上的应用程序包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19909720/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com