Android Manifest抛出一些错误

时间:2017-02-23 12:40:31

标签: android xml manifest

已经阅读了很多帖子,但没有他们帮助过,请记住我对android的新手,所以错误可能很明显。

在检查以下代码时,它声明此处不允许使用以下代码。

    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" 

这是XML

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

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="10" />

    <!--
       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" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:name="com.android.tools.fd.runtime.BootstrapApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        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="mykey" />

        <activity
            android:name="com.example.tutorialspoint7.myapplication.MapsActivity"
            android:label="@string/title_activity_maps" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

这些是错误

Error:(19) No resource identifier found for attribute 'supportsRtl' in package 'android'
Error:(22, 23) No resource found that matches the given name (at 'icon' with value '@mipmap/ic_launcher').
Error:(43, 28) No resource found that matches the given name (at 'label' with value '@string/title_activity_maps').
Error:(25, 24) No resource found that matches the given name (at 'theme' with value '@style/AppTheme').
Error:(22, 23) No resource found that matches the given name (at 'icon' with value '@mipmap/ic_launcher').
Error:(19) No resource identifier found for attribute 'supportsRtl' in package 'android'
Error:(43, 28) No resource found that matches the given name (at 'label' with value '@string/title_activity_maps').
Error:(25, 24) No resource found that matches the given name (at 'theme' with value '@style/AppTheme').
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: Failed to execute aapt

0 个答案:

没有答案