我在真实设备和模拟器上安装应用程序时出现以下错误。
session-app-error-launching-activity-in-android-studio
我试过下面的链接,但没有来
即使在创建新项目后,这个错误也会出现。
这是我的清单文件代码
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.efunhub.neworganicveg">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
提前感谢。
转到文件-
一个更好的解决方案,而不是禁用即时运行
。删除. idea
文件夹和.gradle
文件夹,然后单击按钮将项目与gradle文件同步
,此过程完成后,您可以正常运行您的应用程序。
祝你好运~