简体   繁体   English

未找到运行应用默认活动时出错

[英]error in running app default activity not found

i am getting this error i have tried everything invalidating caches restarting and even editing the config.我收到此错误我已经尝试了所有使缓存无效的方法,甚至重新启动甚至编辑配置。 to main directory when doing this it is giving error.MainActivity not declared in manifest any help would be appreciated and this error is coming from the moment i pulled my code with my friends code working on same project using github执行此操作时到主目录会给出错误。未在清单中声明的 MainActivity 任何帮助将不胜感激,并且此错误来自我使用 github 与我的朋友代码在同一项目上工作的那一刻起

<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">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
        <activity android:name=".ProductDescriptionActivity"/>
        <activity android:name=".ForgetPassOtp"/>
        <activity android:name=".ForgetNumber" />
        <activity android:name=".ResetPassword" />
        <activity android:name=".VerifyPhone" />
        <activity android:name=".RegisterActivity" />
        <activity android:name=".LoginActivity" />
        <meta-data
            android:name="preloaded_fonts"
            android:resource="@array/preloaded_fonts" />
    </application>

</manifest>

Try Invalidate Caches / Restart...尝试使缓存无效/重新启动...

File -> Invalidate Caches / Restart...文件 -> 使缓存无效/重新启动...

possible duplicate "Default Activity Not Found" on Android Studio upgrade Default Activity Not Found - Bug in Android Studio 3.3 Android Studio 升级上可能出现重复的“未找到默认活动” 未找到默认活动 - Android Studio 3.3 中的错误

Deleting ***删除***

D:\src\flutter_launcher\build\app\outputs\apk\app.apk

*** worked for me. ***为我工作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM