udacity / and-nd-firebase

Course code repository for Firebase in a Weekend by Google: Android
https://www.udacity.com/course/firebase-in-a-weekend-by-google-android--ud0352
Apache License 2.0
299 stars 714 forks source link

Unable to build the project #68

Open BiplopDey opened 5 years ago

BiplopDey commented 5 years ago

ERROR: Failed to resolve: com.android.support:design:24.2.0 Add Google Maven repository and sync project Show in Project Structure dialog Affected Modules: app

ERROR: Failed to resolve: com.android.support:appcompat-v7:24.2.0 Add Google Maven repository and sync project Show in Project Structure dialog Affected Modules: app

ggichure commented 5 years ago

add google maven to your root level gradle


    repositories {
        google()
        jcenter()
        maven {
            url "https://maven.google.com"
        }

    }```

update your android support dependencies to 28.0.0 and sync.