Suraj-Tiwari/react-native-payumoney

IOS prod screen mode not opening

Closed this issue · 4 comments

//Below line is not working, it's always showing test card screen
txnParam.environment = payuData[@"isDebug"]?PUMEnvironmentTest:PUMEnvironmentProduction;

Passed parameter

{
......
isDebug:false
...
}

not working

you tried removing condition and hardCoding it to? if yes was that effective?

txnParam.environment = PUMEnvironmentProduction;

Yes by hardcode i had to publish the app, that worked .. i think the trinary operator not working

Fixed is #55