element at a">
赞
踩
AS 3.1.4
类中创建了一个继承自Application
的类,并在AndroidManifest.xml注册。编译报错,提示"Suggestion: add ‘tools:replace=“android:name”’ to element at AndroidManifest.xml"
通过网络搜索,找到android:icon
,android:theme
等相似问题的解决方法,确定问题原因是module中同样有一个继承自Application
的类。
在AndroidManifest.xml的根标签下加上 xmlns:tools="http://schemas.android.com/tools"
,然后在application
标签下加入tools:replace="android:name"
。如下所示
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.**">
<application android:name="com.**.App"
android:allowBackup="true"
android:icon="@mipmap/app_icon"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:replace="android:name">
</application>
</manifest>
1 谷歌文档
1 20100113 增加官方参考文档
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。