android studio错误包找不到?还有一些错误?

时间:2016-07-20 11:00:14

标签: java android

  

错误:无法从中读取packageName   C:\ Users \用户G.K.ENGINEERS \ AndroidStudioProjects \农\应用\ SRC \主\的AndroidManifest.xml   错误:元素类型“manifest”必须后跟任一属性   规格,“>”或“/>”。

    

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

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

1 个答案:

答案 0 :(得分:0)

  

错误:元素类型“manifest”必须后跟任一属性   规格,“&gt;”或“/&gt;”。

每个应用程序的根目录中必须包含 AndroidManifest.xml 文件(具有该名称)。清单文件向Android系统提供有关您的应用程序的基本信息,这是系统在运行任何应用程序代码之前必须具备的信息。

您是否已关闭清单标记

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


    <supports-screens android:anyDensity="true" />

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

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

    </application>

</manifest>