我无法运行我的应用程序Android Studio

我无法运行我的应用程序Android Studio,android,Android,你能帮我吗 当我尝试运行时,编译器会向我显示这一点。有什么想法吗?谢谢 这是AndroidManifest <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.cyrax.rocas"> <application android:

你能帮我吗

当我尝试运行时,编译器会向我显示这一点。有什么想法吗?谢谢

这是AndroidManifest

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

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

        <activity android:name=".Infoclase"></activity>

    </application>

</manifest>


清理并重建项目。

请共享您的android清单此清单中有一些不可见的内容。我在这里对xml验证器进行了检查,没有发现任何错误。你最好再写一遍你的清单。清理并重新生成项目,然后再次运行。您在清单(重新生成清单)末尾添加了一些未知字符,然后重新清理并生成应用程序,这是一个错误。