Android Studio 3.0 Canary 9 - Failed to resolve packages

后端 未结 1 628
别那么骄傲
别那么骄傲 2021-02-08 04:38

I\'m getting several errors within Android Studio 3.0 Canary 9. These errors are \"Failed to resolve:\" the android packages, some listed below. I just installed all the extr

1条回答
  •  鱼传尺愫
    2021-02-08 04:48

    Writing:

    repositories {
        google()
    }
    

    didn't worked in my case, so I used:

    repositories {
        maven {
            url 'https://maven.google.com'
        }
    }
    

    and it worked!

    checkout the migration guide for more info!

    0 讨论(0)
提交回复
热议问题