gpt4 book ai didi

Android Studio 错误运行 'app' : Default Activity not found

转载 作者:行者123 更新时间:2023-11-29 22:59:16 27 4
gpt4 key购买 nike

我在 macOS 10.14.5 上使用 Android Studio 3.4.2。每次我尝试运行我的应用程序时,我都会收到以下错误:

Error running 'app': Default Activity not found

我已经尝试过这个解决方案 ( Error: Default Activity Not Found ) 但它没有帮助。

有什么帮助吗?

最佳答案

如果 Invalidate Caches/Restart 没有帮助您,那么也许你忘了在 list 中声明你的 Activity

   <activity android:name="your.package.YourDefaultActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

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

尝试将此添加到您的 list 中,这行代码告诉系统应用程序应该从哪个 Activity 开始,就像您应用程序的入口点

关于Android Studio 错误运行 'app' : Default Activity not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57121920/

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