Reputation: 229
I integrated flutterwave PG in my android app.In sandbox the payment working fine.But now i changes the sandbox to live and have updated the live public and private keys.
But while checking the payment using my live card it shows Invaild public key passed error.
Can any one help me?
Upvotes: 2
Views: 2830
Reputation: 127
Ran into similar error. Found out that isDebugMode
was set to true
. Set it to false
and problem was solved.
Upvotes: 3
Reputation: 120
Please see how to get your live and test keys on the Rave by Flutterwave payment gateway: https://flutterwavedevelopers.readme.io/docs/api-keys
When on the live environment set .onStagingEnv(boolean)
to false and vice versa when on the test mode.
Upvotes: 4