Questions tagged [react-native-linking]

66 questions
1
vote
2 answers

React Native Link for React Native .60 +

This is still something that is required, I see this message all the time, but it's completely invalid from what I have experienced. Almost every package I work with, I still have to run the react-native link. Can anyone tell me what's up with…
Ezos
  • 107
  • 1
  • 12
1
vote
2 answers

React natives LINKING component works fine in debug but in android release doesn't response

I want to get token by deep link to browser , every thing is ok in debug but in release build nothing happen , I have checked the logcat in android studio; here is my error in image . My Component My environment : react native version : 0.59.9 node…
Farzan
  • 11
  • 2
1
vote
1 answer

Unable to unlink library with react-native unlink

1. I unlinked a library because I am using React Native >v0.59 that links libraries automatically. (base) Somedude@Programmers-Machine-4:~/CrossPlatformProjects/ReactNative/someapp$ react-native unlink @react-native-community/async-storage info…
Crocodile
  • 5,724
  • 11
  • 41
  • 67
1
vote
0 answers

react native maps not working with expo Bare app

I was using expo 34 managed workflow, for some extra features I need to eject my expo app.when I ejected expo app except react-native-maps everything is working fine. I have followed the react-native-maps each and every step for linking. when i run…
1
vote
1 answer

How to link react-native HOC dependencies?

I am using a React native HOC exported as a npm module which uses @react-native-community/async-storage internally throwing AsyncStorage of null due to linking issue. How do I link dependencies automatically once the module is…
1
vote
0 answers

React Native IOS, library linking is not working

I am working on react native application, I have updated react native version of my app. After installing packages and updating pods, I run command to link all libraries:: react-native link But it doesn't work then I have tried manual linking,…
Archana Sharma
  • 1,953
  • 6
  • 33
  • 65
1
vote
0 answers

exception '-[nsnull absolutestring] was thrown while invoking getinitialurl on target linkingmanager

Full error thrown: [fatal][tid:com.facebook.react.linkingmanagerqueue] exception '-[nsnull absolutestring]: unrecognized selector sent to instance 0x10d8b5ea8' was thrown while invoking getinitialurl on target linkingmanager with params ( 626,…
1
vote
0 answers

React Native Linking with Secure Information

Note: this project is using react native and associated libraries and features. What I want to do: In my application I want to allow a user to click a button; and that button will launch the native browser (Chrome or Safari) and navigate to a link…
1
vote
0 answers

React native mobile app : getting Maximum call stack size exceeded error

I have created my first react native app for android and ios, I am currently focusing on Anroid only. Also I have created one react native sample library with some function. Integrated this lib in sample app and try to run the same. I am getting…
Dayanand Lande
  • 211
  • 4
  • 23
1
vote
2 answers

react-native link - Maximum call stack size exceeded

Following the Documentation of rnfirebase.io Having this error when try to link the installed package. react-native link react-native-firebase Scanning folders for symlinks in /PROJ-DIR/node_modules (45ms) rnpm-install ERR! Something went wrong…
1
vote
1 answer

Duplicate interface definition for class 'RCTBridge' error after react-native link

After doing a react-native link to link font assets in my package.json : "rnpm": { "assets": ["./assets/fonts/"] } I got several errors in xcode when trying to run react-native run-ios : Duplicate interface definition for class 'RCTBridge' It…
glemoulant
  • 517
  • 7
  • 18
1
vote
1 answer

Do I run pod update after react-native link with react-native-image-picker?

I'm following the instructions for React Native Image Picker and I'm confused about whether I should run pod install after react-native link https://github.com/react-community/react-native-image-picker#install From what I can tell it adds this line…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
0
votes
0 answers

How to create-react-native-library?

I had created a project with create-react-native-library react-native-testsdk, there is only one iOS and one android module (testsdkViewManager) file but I have 4 native module class and 1 native view class for each iOS and android. Should I bring…
zedios
  • 1
  • 1
0
votes
0 answers

React Native SMS Linking override draft message

I'm trying to send a message via react-native Linking const sendSms = async (phoneNumber, message) => { const separator = Platform.isIos ? '&' : '?' const url = `sms:${phoneNumber}${separator}body=${message}` await…
sheff3rd
  • 63
  • 7
0
votes
0 answers

Specifying subject in openComposer throws an error when selecting Default mail reader on iOS

As the title says I'm trying to compose an email using the react-native-email-link library with a subject and body, but when selecting the Default mail reader it throws an error: [Error: Unable to open URL:…