Add the library into an Android project
1. Put the aar file under /app/libs
2. Add these repositories into build.gradle of app
3. add these dependencies into build.gradle of project
Using the library for payment for Android App
1. Create an Payment object with Activity. The apiURL will be provided during account opening.
2. (Optional, for Octopus only) Call the “isOctopusAppInstalled” method to check whether the smartphone has the Octopus App. If not, ask the user to download it. Otherwise, PaymentStatus “APP_NOT_INSTALLED” will be returned when the “pay” method is called
3. Call the “pay” method with a session ID and a PaymentResultCallback callback
Class Definition
PaymentResult
Field | Type | Sample |
sessionId | String | MPGSSESSION0002121895830J8251291G62 |
paymentStatus | PaymentStatus | APPROVED |
PaymentStatus
Value | Remark |
APPROVED | |
CANCELLED | |
DECLINED | |
NOT_SUPPORTED | |
UNCONFIRMED | Unable to determine the result and need to make further query at backend |
QUERY_FAILED | Cannot get the required transaction information by the session ID. The transaction is not initialed on the payment APP. |
APP_NOT_INSTALLED | For Octopus, which means the Octopus App is not installed |