Launching the Paypal Sample app on Nexus4 - 4.3, using the PayPal SDK for Android. The sample works fine when the following code is added:
CONFIG_ENVIRONMENT = PaymentActivity.ENVIRONMENT_NO_NETWORK;
When switching to real money:
CONFIG_ENVIRONMENT = PaymentActivity.ENVIRONMENT_PRODUCTION;
CONFIG_CLIENT_ID = "Afa................c";
CONFIG_RECEIVER_EMAIL = "david@gmail.com";
I get the following error: "Payment from this device is not allowed", The following line is displayed in the log:
W/DefaultRequestDirector﹕ Authentication error: Unable to respond to any of these challenges: {}
what is the problem?

source
share