Suraj-Tiwari / react-native-payumoney

React Native Payumoney (Android/IOS)
MIT License
18 stars 9 forks source link

IOS prod screen mode not opening #44

Closed Moumit closed 3 years ago

Moumit commented 4 years ago

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

Passed parameter

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

not working

Suraj-Tiwari commented 4 years ago

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

txnParam.environment = PUMEnvironmentProduction;

Moumit commented 3 years ago

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

Suraj-Tiwari commented 3 years ago

okay I'll have a look at it thanks for your info.

Suraj-Tiwari commented 3 years ago

Fixed is #55