I am using the PayPal SDK 2.10.0 on Android 4.3.
I have the error in ENVIRONMENT_SANDBOX
request failed with server response:null
SERVER_COMMUNICATION_ERROR
with Dialog box "There was a problem communicating with the PayPal servers. Please try again."
Is their any guide for PayPal integration in android ? I am new to android, but i have done work with PayPal on websites before.
it's working on Android 5.0 and above .
private static final String CONFIG_ENVIRONMENT = PayPalConfiguration.ENVIRONMENT_SANDBOX;
private static final String CONFIG_CLIENT_ID = "*****************************************************************";
private static PayPalConfiguration config = new PayPalConfiguration()
.environment(CONFIG_ENVIRONMENT)
.clientId(CONFIG_CLIENT_ID)
.merchantName("TapTop");
Intent intent = new Intent(this, PayPalService.class);
intent.putExtra(PayPalService.EXTRA_PAYPAL_CONFIGURATION, config);
startService(intent);