AAPT 错误:<manifest> 标记中的属性“包”不是有效的 Android 包名称

Posted

技术标签:

【中文标题】AAPT 错误:<manifest> 标记中的属性“包”不是有效的 Android 包名称【英文标题】:AAPT Error: attribute 'package' in <manifest> tag is not a valid Android package name 【发布时间】:2021-06-04 06:57:47 【问题描述】:

我已经查看了此问题的先前答案,但仍然出现 AAPT 错误。

error: attribute 'package' in <manifest> tag is not a valid android package name: 'org.emarti202.gcu.mpd-cw-em'.

尽管我在 build.gradle 中的 applicationId 和 AndroidManifest.xml 中的包名匹配,但它们仍然不起作用。有解决方案吗?抱歉,这是一个简单的解决方法,我似乎无法理解它。

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.emarti202.gcu.mpd-cw-em">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="MPD-CW-EM"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <meta-data android:name="com.google.android.geo.API_KEY"
            android:value="@string/map_key" />

        <activity android:name="org.emarti202.gcu.mpd-cw-em.MainActivity2"></activity>
        <activity android:name="org.emarti202.gcu.mpd-cw-em.MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

build.gradle

apply plugin: 'com.android.application'

android 
    compileSdkVersion 28
    defaultConfig 
        applicationId "org.emarti202.gcu.mpd-cw-em"
        minSdkVersion 23
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    
    buildTypes 
        release 
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        
    



dependencies 
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.google.android.gms:play-services:+'
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    // implementation 'com.alespero:expandable-cardview:0.6'
    // implementation 'com.google.android.gms:play-services-maps:16.1.0'

【问题讨论】:

【参考方案1】:

不幸的是,连字符“-”在包名称中是不可接受的。 请参考此文档。

https://developer.android.com/guide/topics/manifest/manifest-element.html#package

Android 应用程序的完整 Java 语言样式的包名称。名称可以包含大写或小写字母(“A”到“Z”)、数字和下划线(“_”)。但是,单个包名称部分只能以字母开头。 在将您的应用构建到应用程序包 (APK) 中时,构建系统将 package 属性用于两件事

请将您的软件包名称更改为“org.emarti202.gcu.mpd_cw_em”。

【讨论】:

啊,我明白了!对不起,丹尼尔,谢谢你帮助我! 没问题,所以,除了字母、数字、字符“.”之外,你不能使用其他任何东西。和字符“_”。

以上是关于AAPT 错误:<manifest> 标记中的属性“包”不是有效的 Android 包名称的主要内容,如果未能解决你的问题,请参考以下文章

Flutter AAPT:错误:在 <manifest> 中发现了意外的元素 <appliation>

AAPT:错误:在 <manifest> 中发现了意外元素 <queries>。将 admob 广告添加到我的应用时出错

Android Studio 报出此错AAPT: error: unexpected element <intent-filter> found in <manifest><application>.

AAPT:错误:未绑定的前缀。在 XML 安卓中

AAPT 错误不匹配的标签到目前为止已经尝试了所有方法做错了啥

我的错误“在 <manifest> 中发现了意外的元素 <queries>”,如何解决? [关闭]