All firebase libraries must be either above or below 14.0.0

后端 未结 10 648
孤街浪徒
孤街浪徒 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:20

    Change to this work for me:

    implementation 'com.firebase:geofire-android:2.1.2'
    implementation 'com.google.android.gms:play-services:12.0.1'
    implementation 'com.google.firebase:firebase-core:12.0.1'
    implementation 'com.google.firebase:firebase-database:12.0.1'
    implementation 'com.google.firebase:firebase-messaging:12.0.1'
    implementation 'com.google.firebase:firebase-core:12.0.1'
    implementation 'com.google.firebase:firebase-auth:12.0.1'
    

    Try to find anything above 14.0.0 like:

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

    and try to change it to older version like

    implementation 'com.google.android.gms:play-services-location:12.0.1'
    

提交回复
热议问题