Crashlytics for NDK just shows the method name in fabric logs - google-fabric

How can i get the line number??
I just get the method name in native crashes.
I have uploaded the symbols and followed the document for setting up NDK crashes in Crashlytics for my native code

Related

'React/RCTAnimationType.h' file not found in ios react native

After integrating "react-native-zendesk-support" ti my ios project and followed all the giver steps i got an error while building ios app
'React/RCTAnimationType.h' file not found
enter image description here

How to copy warning messages in React Native

I recently got a warning message appeared on the screen when developing a React Native app. I want to copy that warning message but couldn't find any way to do that. It is possible to copy an error message but not a warning.
You can log any warnings and errors in console.
Open separate window on the project directory and run react-native log-android
and simply copy error message from console.

What is the right way to import custom react native module on Xcode?

I'm building a custom RN module for iOS and Android. Following some others modules, I notice that the dependencies it's never imported to the module itself, but always imported in the main app. For example for iOS:
react-native-admob has Google Mobile Ads SDK as dependency, but the developer has to add on the app.
That said, I have my custom module only building on Xcode, because when I try to run react-native run-ios I get the error:
info In file included from /Users/.../node_modules/react-native-my-module/ios/MyModuleViewManager.m:2:
/Users/.../node_modules/react-native-my-module/ios/RNMyModule.h:8:9: fatal error: module 'PrebidMobile' not found
#import PrebidMobile;
~~~~~~~^~~~~~~~~~~~
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening myapp.xcworkspace
What could I be doing wrong, that react-native command can't find the import library from Link Binary With Libraries?

Does crashlytics support react-native applications in production

Does fabric crashlytics supports react native application with release apks.
i have added fabric crashlytics to my app but the errors are not showing original file name where the error occured.After doing some research i found that we have to generate source map while bundling.But i didn't find any working example on how to generate source map for android and ios.

cannot able to run react native project by android emulator

Error when try to run
I am having react native project and iam trying on android emulator via below command
react-native run-android
but its not working getting the error like in the image
From your log, it's clear that you haven't configured SDK location
You must add SDK location
sdk.dir=/Users/XXXXX/Library/Android/sdk
Create a new file named local.properties inside the android folder of your react-native app.
Add the SDK location.
Hope this helps