Android:Urban Airship 6.0.1:android:提升找不到与给定名称匹配的资源
作者:互联网
我正在尝试将Urban Airship Library添加到我的项目中.我完全按照步骤操作,但是当我构建时,我得到了这个错误
No resource found that matches the given name: attr'android:elevation'
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- From: file:/Users/build/workspace/android-library/UrbanAirship/src/main/res/values-v21/styles.xml -->
<eat-comment/>
<style name="Widget.UrbanAirship.InAppMessage.Banner" parent="Base.Widget.UrbanAirship.InAppMessage.Banner">
<item name="android:background">@drawable/ua_iam_background</item>
<item name="android:elevation">@dimen/ua_iam_banner_elevation</item>
</style>
</resources>
这是我的gradle文件依赖项
compile 'com.android.support:support-v4:22.0.0'
compile 'com.android.support:cardview-v7:22.0.0'
compile 'com.google.android.gms:play-services-gcm:7.0.0'
compile 'com.google.android.gms:play-services-location:7.0.0'
我的targetSdkVersion是21,我还从SDK管理器更新了我的API
http://docs.urbanairship.com/platform/android.html供参考
请帮我.谢谢!
更新1:Android部分在gradle中
android {
compileSdkVersion 19
buildToolsVersion "21.1.1"
defaultConfig {
applicationId "com.example"
minSdkVersion 14
targetSdkVersion 21
multiDexEnabled true
renderscriptTargetApi 22
renderscriptSupportModeEnabled true
}
dexOptions {
javaMaxHeapSize "4g"
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LGPL2.1'
}
}
解决方法:
尝试将compileSdkVersion设置为21
标签:urbanairship-com,android 来源: https://codeday.me/bug/20190728/1559034.html