Gradle 添加 android 支持设计库后出错
Gradle error after add android support design library
将 compile 'com.android.support:design:22.2.0'
添加到我的 gradle 文件后出现此错误:
.../app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values/values.xml
这条消息 Error:(1) Attribute "insetForeground" has already been defined
。
我的 build.gradle 文件中有这个:
`
compile 'com.android.support:design:22.2.0'
compile 'com.android.support:cardview-v7:22.2.0'
compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'com.google.android.gms:play-services-base:7.5.0'
compile 'com.google.android.gms:play-services-location:7.5.0'
compile 'com.google.android.gms:play-services-gcm:7.5.0'
compile 'com.google.android.gms:play-services-maps:7.5.0'
我省略了 AppCompat Support Library
正如 this article 所说。
我该如何解决?
您的项目中的导航抽屉设计可能有 ScrimInsetsFrameLayout
。在你的 attr 中删除那些属性资源,并将抽屉布局替换为 NavigationView.
将 compile 'com.android.support:design:22.2.0'
添加到我的 gradle 文件后出现此错误:
.../app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/res/values/values.xml
这条消息 Error:(1) Attribute "insetForeground" has already been defined
。
我的 build.gradle 文件中有这个: `
compile 'com.android.support:design:22.2.0'
compile 'com.android.support:cardview-v7:22.2.0'
compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'com.google.android.gms:play-services-base:7.5.0'
compile 'com.google.android.gms:play-services-location:7.5.0'
compile 'com.google.android.gms:play-services-gcm:7.5.0'
compile 'com.google.android.gms:play-services-maps:7.5.0'
我省略了 AppCompat Support Library
正如 this article 所说。
我该如何解决?
您的项目中的导航抽屉设计可能有 ScrimInsetsFrameLayout
。在你的 attr 中删除那些属性资源,并将抽屉布局替换为 NavigationView.