All firebase libraries must be either above or below 14.0.0

后端 未结 10 638
孤街浪徒
孤街浪徒 2021-01-03 18:48

I have checked my app build.gradle file and these are the only lines that are related to firebase in them

/***
 * Firebase
 */
implementation \'com.google.f         


        
10条回答
  •  半阙折子戏
    2021-01-03 19:05

    Remove this from App level gradle

    implementation 'com.google.android.gms:play-services-maps:15.0.0'
    

    and then try these versions

    compile 'com.google.firebase:firebase-core:11.8.0'
    compile 'com.google.firebase:firebase-messaging:11.8.0'
    compile 'com.google.firebase:firebase-database:11.8.0'
    compile 'com.google.firebase:firebase-auth:11.8.0'
    

    this one worked for me... tanx

提交回复
热议问题