-
I see following error message when Crashlytics dashboard page is opened.
And this github issue comment link was given for help --> firebase/firebase-android-sdk#4223 (comment) This comment apparently suggests following thing
But I do not use BOM and I am working on There wasn't any discussion about installing
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
If you use For Android, if you are on current versions here then you already have the necessary fixes: We are on firebase-android-sdk 31.0.2 now. You may also consult our changelog any time to see what changes are, and that would have answered your question: https://invertase.io/blog/react-native-firebase-versioning There were only two days where BoM 31.0.0 was in place here before 31.0.1 was released and I released here to get it out to users: |
Beta Was this translation helpful? Give feedback.
-
@mikehardy Thank you for your prompt response. Now, I agree that no need add BOM explicitly as it is already part of Is there anything that I can do to get get rid of this error? BTW, I am |
Beta Was this translation helpful? Give feedback.
-
This is my
This could be the reason why I am seeing the warning. I think I found the root cause of the issue. Following are the
The latest version of
IF I have to consider the above warning, Then I can never maintain the latest version of I believe the above May I know How to always maintain the latest version of |
Beta Was this translation helpful? Give feedback.
If you use
@react-native-firebase/app
(which you must use, to use any other react-native-firebase packages) then we use the BoM and manage the versions for you, so you are using it but you do not have to think about it normally.For Android, if you are on current versions here then you already have the necessary fixes:
react-native-firebase/packages/app/package.json
Line 76 in d654d00
We are on firebase-android-sdk 31.0.2 now.
You may also consult our changelog any time to see what changes are, and that would have answered your question:
https://invertase.io/blog/react-native-firebase-versioning
There were only two days where BoM 31.0.0 was in place…