本文主要是介绍权威证明 Could not identify launch activity: Default Activity not found 报错,可能你就犯啦其中一种情况。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Could not identify launch activity: Default Activity not found
Error while Launching activity Failed to launch an application on all devices
我在使用组件化和模块化的时候,合并一个APP时发生的错误。
错误:
第一个可能性:
给要启动的activity配置如下代码
<intent-filter><action android:name="android.intent.action.MAIN" /><category android:name="android.intent.category.LAUNCHER" /></intent-filter>
第二个可能性的查找方法:
当你app发生错误时AS会在app下的debug下可以查找到错误,请不要删除, 删除的话可能你一时半会儿都不知道错在什么地方。
令我导致的问题是我在判断模块化时多加啦个判断,给大家看下。
错误的
正确的
是因为搜索不到App下的清单文件
debug的显示就是你就一个<application>
你没有自己的<activity> ,同时加上你没有 <intent-filter> 导致报错。要不就是你查找不到<activity>
这篇关于权威证明 Could not identify launch activity: Default Activity not found 报错,可能你就犯啦其中一种情况。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!