Avinash thanvi
Avinash thanvi
i've been facing same issue...any solution ?
From X-code its working fine but when i run using yarn ios/ react-native run-ios then it will give this : The following build commands failed: SwiftEmitModule normal x86_64 Emitting\ module\...
same issue
> This solved it for me: https://stackoverflow.com/a/57586407/20992086 or similar https://stackoverflow.com/a/71219659/20992086. Android working fine, Getting issue in iOS app, App launch successfully but changes are not reflect.
Replace your fucntion with this convertStringToObject(responseString: string) { if(responseString === undefined){ return "" } else{ let object = {}; const stringArray = responseString.split('&'); object = stringArray.reduce((accumulator, current) => { const...
> But why are you getting undefined from the responseString in the first place.. in my case if i don't set this thing and click on Gpay form chooser then...
you can solve this error from below 1. transactionRef: 'send every time new transactionRef'. 2. also You need to use merchant UPI ID (registered in Business UPI App). It wokred...
try this Code,May be it help's you function upiPayment() { RNUpiPayment.initializePayment( { vpa: 'Enter your merchantID', // Like:--> 9876543210@upi payeeName: 'upi registered', //your shop name which is registered in bank...
> what is paymentAction() When payment is completed successfully then we call post payment API in which we send success data to server. Note:- If you don't want anything after...
I was facing the same issue, but when I added the @react-native-community/cli command to package.json, both of my apps started working again. It might be that some dependencies or modules...