当前位置:网站首页>AAPT: error: duplicate value for resource ‘attr/xxx‘ with config ‘‘, file failed to compile.
AAPT: error: duplicate value for resource ‘attr/xxx‘ with config ‘‘, file failed to compile.
2022-08-02 14:06:00 【慢行的骑兵】
bug出现场景:迁移一个老项目新IDE(AS 3.6.3),经过修改一些配置,项目编译通过,运行的时候出现如果错误。
/用户名路径/.gradle/caches/transforms-2/files-2.1/fe76808470c2aae890b80fb0fe4dd9b3/design-23.4.0/res/values/values.xml:19:5-827: AAPT: error: duplicate value for resource ‘attr/layout_anchorGravity’ with config ‘’.
通过观察,问题应该出现在有重复的layout_anchorGravity 属性导致这个问题。
全部搜索"layout_anchorGravity",Ctrl + Shift + F/R,选择Scope,结果如下:
控制台执行命令:./gradlew app(模块名):dependencies
处理方式
implementation ('com.jcodecraeer:xrecyclerview:1.5.8'){
exclude group:'com.android.support'
}