android-studio – Android Studio错误类型3:启动活动时出错

我是
Android开发的新手,我真的发现它有时混乱和混乱.我正在运行我的项目,之前工作正常,然后复制了一个活动,并更改了包名称,工作正常.我关闭了android工作室.现在,当我再次打开我的项目时,我开始收到错误“启动时出错:找不到默认活动”但我在AndroidManifest.xml中有它.然后我尝试了“编辑配置 – >常规 – >启动应用程序并将其设置为Splashscreen.现在我收到了这个新的错误,这个错误太顽固而无法消失!我已经尝试了一切,但没有真正对我有用.请帮助我我可能会遗漏一些愚蠢的东西.

 $adb shell am start -n"com.example.dell.optasiaapp/com.example.dell.optasiaapp.Splashscreen" -a     android.intent.action.MAIN -c android.intent.category.LAUNCHER
 Error while executing: am start -n    "com.example.dell.optasiaapp/com.example.dell.optasiaapp.Splashscreen" -a   android.intent.action.MAIN -c android.intent.category.LAUNCHER
Starting: Intent { act=android.intent.action.MAIN cat=    [android.intent.category.LAUNCHER] cmp=com.example.dell.optasiaapp/.Splashscreen }
Error type 3
Error: Activity class {com.example.dell.optasiaapp/com.example.dell.optasiaapp.Splashscreen} does not exist.

Error while Launching activity

我尝试过的:

>清理项目并重建
>卸载应用程序,断开移动设备并重新连接以再次构建
> Deleting.idea / workspace.xml
>在gradle构建中添加Application id =“Pakage name”
>将android:name =“.Splashscreen”更改为android:name =“com.example.dell.optasiaapp.Splashscreen”
>文件 – >无效缓存/重新启动…

我的AndroidManifest代码是

<?xml version="1.0" encoding="utf-8"?>
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme"></application>
<activity android:name=".Splashscreen"
    android:label="@string/app_name">

    <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
<activity android:name=".HomeScreen">
    <intent-filter>
        <action android:name="com.example.dell.optasiaapp.HomeScreen" />

        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
<meta-data
    android:name="com.google.android.gms.version"
    android:value="@integer/google_play_services_version" />

<activity android:name=".AboutUs">
    <intent-filter>
        <action android:name="com.example.dell.optasiaapp.AboutUs" />

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

最佳答案 这太愚蠢了.我在互联网上尝试了所有可用的东西,但对我没用所以我刚刚制作了一个新项目,并将每个代码粘贴到新的空活动中.现在运行正常.

点赞