Reputation: 637
I implemented pay with google using stripe in test mode but when iam running app it shows an error .
error is
"unrecognised app.please make sure that you trust this app before proceeding" and it also shows transaction declined : invalid payment
Upvotes: 1
Views: 899
Reputation: 21
I know this is an old thread but see point 4, below, taken from the google pay API documentation. As long as you are in test mode this will show up.
" public static final int ENVIRONMENT_TEST Environment constant for running in the test environment with relaxed application / merchant requirements. This environment is suggested for early development and for easily testing the Wallet SDK.
It uses production data, but at the end of the transaction you will receive a fake and non chargeable payment credential.
4. The user will see a warning message that the app is not recognized/verified.
Constant Value: 3 "
Upvotes: 2