Failed to resolve: play-services-tasks

后端 未结 5 1332
深忆病人
深忆病人 2020-12-05 18:25

I have been tryong to add FCM to my android application for almost 48 hours now. I am keep on failing with these two errors on Android Studio. I have tried all the solutions

5条回答
  •  爱一瞬间的悲伤
    2020-12-05 18:45

    Add in your app.gradle

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

    and upgrade your dependencies version.

提交回复
热议问题