找不到与给定名称匹配的资源:attr' fabSize' .compile sdk版本为24

时间:2017-01-21 04:54:04

标签: android git firebase sdk android-gradle

我已经开始了" FireBase Essential Udacity课程"从git下载代码。我在构建gridle上使用android studio编译sdk版本也是uptodate版本24但仍然会出现这些错误。

  

错误:(1530,21)找不到与给定名称匹配的资源:attr   ' fabSize&#39 ;.错误:(1531,21)找不到与给定匹配的资源   名称:attr' rippleColor'。错误:(1530,21)没有找到资源   匹配给定的名称:attr' fabSize'。错误:(1531,21)没有资源   发现它匹配给定的名称:attr' rippleColor'。

的build.gradle(模块:应用)

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.3"
defaultConfig {
    applicationId "com.example.zar.shoppingfirebase"
    minSdkVersion 22
    targetSdkVersion 24
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner         "android.support.test.runner.AndroidJUnitRunner"
   }
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})

compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:support-v4:24.2.1'
compile 'com.firebase:firebase-client-android:2.4.0'
compile 'com.google.android.gms:play-services-safetynet:10.0.1'
compile 'com.google.android.gms:play-services-auth:10.0.1'
compile 'com.google.firebase:firebase-database:10.0.1'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services' 

Android Sdk enter image description here

enter image description here

1 个答案:

答案 0 :(得分:2)

尝试在gradle文件中添加此行并构建

compile 'com.android.support:design:24.0.0'

看起来您正在使用浮动操作按钮,但尚未添加设计库。