AndroidManifest.xml 这个为什么报错啊?

img


<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.myapplication">


    <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" >

        </activity>

    </application>

</manifest>

com.example.myapplication 这个包下是否存在 MainActivity 这个类?

把build文件夹删了重新build一下看看?

应该是gradle还没构建完成导致的,重新编译一下试试