and-nd-firebase icon indicating copy to clipboard operation
and-nd-firebase copied to clipboard

Unable to build the project

Open BiplopDey opened this issue 5 years ago • 1 comments

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

BiplopDey avatar Aug 04 '19 12:08 BiplopDey

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.

ggichure avatar Aug 06 '19 18:08 ggichure