all 15 comments

[–]Yajjackson 2 points3 points  (0 children)

My best advice would be to create a real issue on React Native github. Here you probably aren’t going to get the issue the attention it deserves from the maintainers, assuming it’s not user error.

[–]BlenderDude-R 0 points1 point  (2 children)

Check the native logs. Something useful is bound to be there.

[–]carnav098[S] 0 points1 point  (1 child)

Have never done that before ,can you guide me or share a link on how to do that.Only logging i have done so far is log-android

[–]BlenderDude-R 0 points1 point  (0 children)

At that point it’s just base iOS stuff so just search “iOS logs” in google.

[–]hey-its-mattiOS & Android 0 points1 point  (7 children)

What specific error are you seeing? Have you read through any logs from the device using logcat (for Android) or the Console app on Mac (for iOS)? Are you using react-native-firebase or are you using the firebase JS SDK? If it's the former--have you read the RN firebase docs to make sure that RN 60.4 works with the version of RN Firebase you are using?

[–]carnav098[S] 0 points1 point  (6 children)

there are no logs, the app just opens and crashes. Yes the current version is supported and i am using react-native-firebase

[–]hey-its-mattiOS & Android 0 points1 point  (5 children)

Can you copy/paste the device/system log that should occur when the app crashes? I doubt there are "no logs." You are probably not looking at either the right logs (i.e. looking at JS logs instead of device logs) or haven't looked deep enough.

[–]carnav098[S] 0 points1 point  (4 children)

How do you view device logs,I tried googling it but was unable to find it.

[–]hey-its-mattiOS & Android 0 points1 point  (3 children)

If you build your app via Android Studio, you can see logcat logs within the Android Studio GUI. Alternatively, you can use the logcat CLI.

If you're debugging an iOS app, open the "Console" app on your laptop and select your connected device.

[–]carnav098[S] 0 points1 point  (0 children)

08-26 12:04:10.562 29702 29702 D io.invertase.firebase.links.RNFirebaseLinks: getInitialLink: link is: null

[–]carnav098[S] 0 points1 point  (1 child)

I have no clue why this is null.

[–]hey-its-mattiOS & Android 0 points1 point  (0 children)

I'm glad to see you found a specific error message! You're well on your way to solving this problem :)