SafeCharge Android SDK for Java.
SafeCharge's Android SDK provides payment activity and fragment in order for any given app to be able to process consumer payments through SafeCharge’s payment gateway.
Requirements
Android API >= 16
Gradle
Add safecharge_android_sdk package in the module dependency:
dependencies {
compile 'com.safecharge:safecharge_android_sdk:1.+'
}
Initialization
You will need to obtain MerchantId, merchantSiteId, clientRequestId and secretKey via your Safecharge merchant account.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
try {
m_safeChargeAuthRequest = new AuthorizationRequest("8912193623117089371", //merchantID
"125823", // merchantSiteID
"111899", //clientID
"mY4QUnfnH2JO8cnSN6fm0aqRMsXOUDKu1Cx0im5eFzHOiGQ9WPbQaFopSgO1Vmp8" //secretKey
);
m_billingAddress = new BillingAddress("New York","US","2223","[email protected]","Harry","Potter","CA");
m_safeChargeFragment = SafechargePaymentFragment.newInstance(this,m_safeChargeAuthRequest, m_billingAddress,"HarryPotter", ServiceConstants.IntegrationBaseURL);
} catch (InvalidAuthorizationException e) {
//issue with the provided authorization request data
} catch (InvalidArgumentException e) {
// There was an issue with your authorization string.
}
}
Register Listeners
SafechargePaymentListener
m_safeChargeFragment.addPaymentListener(new SafechargePaymentListener() {
@Override
public void onTokenizeCard(CardTransactionResultModel cardTransactionResult) {
//everything you need
}
@Override
public void onTokenizeCardError(ServiceError error) {
//service error can be handled here
}
});
FragmentListener
Add fragment listener when you want to observer the payment fragment.
m_safeChargeFragment.addFragmentListener(new SafechargeFragmentListener() {
@Override
public void onFragmentClose() {
//will be called when the fragment is closed
}
});
ProGuard
A ProGuard configuration is provided as part of Safecharge Android SDK. There is no need to add any specific rules to your ProGuard configuration.