当我尝试通过adb启动应用程序时,我遇到了异常
java.lang.SecurityException:权限拒绝:启动Intent
使用的CMD: adb shell开始-n pakage / mainactivity名称
答案 0 :(得分:1)
确保要启动的活动具有正确的意图动作和类别。例如:
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN" />
检查android文档以获取更多信息:
https://developer.android.com/guide/topics/manifest/manifest-intro
https://developer.android.com/reference/android/content/Intent
还有一个非常相似的问题,其中包含有关Android清单的更多详细信息:
Android - java.lang.SecurityException: Permission Denial: starting Intent