Java多根标签Android Studio


<manifest android:versionName="1.0" android:versionCode="1" package="com.sveder.hwopengl" xmlns:android="http://schemas.android.com/apk/res/android">

<activity android:name="com.sveder.hwopengl.MainActivity" android:label="@string/app_name" android:screenOrientation="landscape">

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

它说"多个根标签",只有一个根布局谢谢你的帮助

您需要关闭intent-filter,然后关闭manifest标签。因此,将</intent-filter></manifest>添加到文件中。

相关内容

最新更新