【发布时间】:2015-06-03 06:40:11
【问题描述】:
通常当我运行或调试我的应用程序时,它会卸载旧版本,安装新版本,最后运行新应用程序,与调试时相同。几天前,我的 Eclipse 开始以不同的方式工作,它安装了我的应用程序,但没有运行。在安装之前,我得到了这个 LogCat:
No Launcher activity found!
The launch will only sync the application package on the device!
这是我的清单:
<activity
android:name="com.company.app.activities.WelcomeActivity"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
谁能帮我解决这个问题?如果我想运行应用程序,这不是问题,因为我只需要手动执行,但无法调试。
【问题讨论】:
标签: android eclipse debugging android-manifest