我的构建因此错误而失败- 清单合并失败,出现多个错误,请参阅日志
合并错误,显示为-
错误:AndroidManifest.xml:23:9-51应用程序主清单(此文件)的第22行,元素元数据上缺少“名称”键属性 错误:在属性:android:value的第23行指定了tools:replace,但未在应用主清单(此文件)的第22行中指定新值 错误:验证失败,退出应用程序主清单(此文件)
AndroidManifest.xml-以下是清单文件中显示错误的一小段。
<application
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<meta-data tools:replace="android:value"/>
<activity ....
Build.Gradle文件下面的一小段-
android {
compileSdkVersion 26
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 15
targetSdkVersion 26
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
implementation 'com.google.android.gms:play-services-ads:17.1.1'
implementation 'com.google.android.gms:play-services-analytics:16.0.5'
testImplementation 'junit:junit:4.12'
}
答案 0 :(得分:3)
删除此:
<meta-data tools:replace="android:value"/>
似乎什么也没做,这是导致您出错的原因。
答案 1 :(得分:1)
google()
的根级别添加build.gradle
buildscript {
repositories {
google() // <--here
jcenter()
}
}
allprojects {
repositories {
google() // <-- here
jcenter()
}
}
现在看到魔术了-错误消失了...:)