是否有人遇到此“xmlns”命名空间问题(见下文)?我不能再建立我的工作项目了。
最后我尝试重新安装Android Studio并重新创建我的git存储库 - 问题仍然存在。
The prefix "xmlns" cannot be bound to any namespace explicitly; neither can the namespace for "xmlns" be bound to any prefix explicitly.
Error: The prefix "xmlns" cannot be bound to any namespace explicitly; neither can the namespace for "xmlns" be bound to any prefix explicitly.
:{project}:mergeReleaseResources FAILED
Execution failed for task ':{project}:mergeReleaseResources'.
> {project}/build/intermediates/incremental/mergeResources/release/merger.xml:1:61: Error: The prefix "xmlns" cannot be bound to any namespace explicitly; neither can the namespace for "xmlns" be bound to any prefix explicitly.
注意:问题似乎与Android Gradle merged Values.xml uses wrong namespace类似,但我找不到未使用的命名空间。我运行了一个检查,但没有找到任何未使用的命名空间。
答案 0 :(得分:27)
在我的情况下,删除 com_crashlytics_export_strings.xml 文件修复了此错误。
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<resources>
<!--
This file is automatically generated by Crashlytics to uniquely
identify individual builds of your Android application.
Do NOT modify, delete, or commit to source control!
-->
<string xmlns:ns0="http://schemas.android.com/tools" name="com.crashlytics.android.build_id" ns0:ignore="UnusedResources,TypographyDashes" translatable="false">xxxxxxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</string>
</resources>
答案 1 :(得分:1)
您需要从 main \ res \ values \ style.xml中删除所有 xmlns:android =“http://schemas.android.com/apk/res/android” 文件样式标记。 您的 style.xml 文件应如下所示:(确保样式标记中没有xmlns字段)
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppBaseTheme" parent="android:Theme.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
</style>
<style name="RadioButton" parent="@android:style/Widget.CompoundButton">
<item name="android:button">@null</item>
<item name="android:padding">5dp</item>
</style>
<style name="EditText" parent="@android:style/Widget.EditText">
<item name="android:textSize">15sp</item>
</style>
</resources>
答案 2 :(得分:0)
我能够通过编辑&#39;来清除此错误。我的build.gradle很好(删除空格等)和 那么 清理我的构建。在没有首先编辑gradle构建文件的情况下,Android Studio没有获取更改。