Java 我在AndroidMainfest.xml文件上有标记问题

Java 我在AndroidMainfest.xml文件上有标记问题,java,android,xml,tags,Java,Android,Xml,Tags,我正在开发一个uber应用程序,所以我需要通过互联网连接我的应用程序,因为我看到我的XML文件上有标记问题,我试图通过更改标记来修复它,但它不起作用 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" pac

我正在开发一个uber应用程序,所以我需要通过互联网连接我的应用程序,因为我看到我的XML文件上有标记问题,我试图通过更改标记来修复它,但它不起作用

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

    <!--
         The ACCESS_COARSE/FINE_LOCATION permissions are not required to use
         Google Maps Android API v2, but you must specify either coarse or fine
         location permissions for the 'MyLocation' functionality.
    -->
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <user-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <user-permission android:name="android.permission.INTERNET'/>


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

        <!--
             The API key for Google Maps-based APIs is defined as a string resource.
             (See the file "res/values/google_maps_api.xml").
             Note that the API key is linked to the encryption key used to sign the APK.
             You need a different API key for each encryption key, including the release key that is used to
             sign the APK for publishing.
             You can define the keys for the debug and release targets in src/debug/ and src/release/.
        -->
        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="@string/google_maps_key" />

        <activity
            android:name=".CivilianMapsActivity"
            android:label="@string/title_activity_civilian_maps"> </activity>
        <activity android:name=".CivilianLoginRegisterActivity" />
        <activity android:name=".PolicemanLoginRegisterActivity" />
        <activity android:name=".WelcomeActivity" />
        <activity android:name=".MainActivity"
            tools:ignore="WrongManifestParent">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

    </application>

    </manifest>

你打错了。其

<uses-permission

上次许可中还有一个引号输入错误omg my bad thank you mate.顺便问一下,应用程序标签之间有什么问题吗?
<uses-permission
<user-permission