java.lang.RuntimeException: Could not launch intent Intent { act=android.intent.action.MAIN flg=0x14000000 cmp=x.x.x.x/.x} within 45000 milliseconds. Perhaps the main thread has not gone idle within a reasonable amount of time? There could be an animation or something constantly repainting the screen. Or the activity is doing network calls on creation? See the threaddump logs. For your reference the last time the event queue was idle before your activity launch request was 1609145770495 and now the last time the queue went idle was: 1609145771593. If these numbers are the same your activity might be hogging the event queue.
at androidx.test.runner.MonitoringInstrumentation.startActivitySync(MonitoringInstrumentation.java:490)
at androidx.test.rule.ActivityTestRule.launchActivity(ActivityTestRule.java:358)
at androidx.test.rule.ActivityTestRule$ActivityStatement.evaluate(ActivityTestRule.java:529)
at org.junit.rules.RunRules.evaluat
关于android espresso (小米Could not launch intent)解决方法
最新推荐文章于 2024-01-09 17:06:40 发布
在执行Android Espresso测试时遇到RuntimeException,提示Could not launch intent within 45000 milliseconds。错误可能由于主线程未及时空闲、持续重绘或网络操作导致。解决方法是在设置中为应用开启'后台弹出界面'权限。
摘要由CSDN通过智能技术生成