java.util.ConcurrentModificationException in activity onCreate

后端 未结 5 1968
情话喂你
情话喂你 2020-12-03 00:38

In a recent release where I added MoPub via Admob ad mediation I am seeing a bunch of ConcurrentModificationException in crash logs. It all seems to be native code and I am

5条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-03 01:06

    Revert your Firebase Core library to:

    implementation 'com.google.firebase:firebase-core:17.1.0'
    

    I've seen this crash on both v17.2.1 and v17.2.2, but since reverting to 17.1.0 all has been fine.

    I've reported the bug here: https://firebase.google.com/support/troubleshooter/report/bugs

    Update

    Thanks @Sébastien, reverting to v17.2.0 should also work:

    implementation 'com.google.firebase:firebase-core:17.2.0'
    

提交回复
热议问题