Firebase version conflicts with support library

前端 未结 3 1785
挽巷
挽巷 2021-01-26 02:15

I know this is a common question and I already read several posts and modify many times my gradle file but I can\'t find the solution.

The error message i

3条回答
  •  梦谈多话
    2021-01-26 02:36

    change

    dependencies{
    implementation 'com.google.firebase:firebase-core:16.0.8'
    }
    

    dependency in your app gradle from

    dependencies{
       implementation 'com.google.firebase:firebase-core:15.0.0'
    }
    

    and then sync your project with these changes.

提交回复
热议问题