Android Studio 3.1: mixing versions can lead to runtime crashes

后端 未结 10 1037
北荒
北荒 2021-02-07 05:11

Have recently upgraded to Android Studio 3.1, and at the same time I\'m trying the Android P preview.

I\'m getting the following error on compiling:

10条回答
  •  一生所求
    2021-02-07 05:53

    Are you using a firebase in your project? Using firebase core or firebase app indexing seem to be causing the problem. I was having the same problem, but commenting on firebase packages makes the error to go away

    //    implementation 'com.google.firebase:firebase-core:16.0.8'
    //    implementation 'com.google.firebase:firebase-ads:17.2.0'
    //    implementation 'com.google.firebase:firebase-appindexing:17.1.0'
    

提交回复
热议问题