- What is the CheckoutCardManagement-Android SDK?
- Environments
- Features
- Requirements
- Integration
- Contact
Our CheckoutCardManagement-Android SDK is the mobile gateway to our wider card issuing solution. It enables your mobile application to securely access important card information and functionality, in a fast and safe way.
The Android SDK supports 2 environments: Sandbox and Production, both powered by the CheckoutCardManager library.
Use of these environments requires onboarding with our operations team. During onboarding, you'll receive client credentials, which you will then need to handle on your backend for authentication. You will be expected to manage Strong Custom Authentication (SCA) requirements as part of accessing the SDK's functionality.
Your app can consume the SDK directly through Maven Central; there is no additional setup required, meaning you can get up and running quickly.
We value the Android community and are big fans of following best practices and making use of cutting-edge technology. As such, our APIs utilise Jetpack Compose, Kotlin Coroutine, and follow the Kotlin Coding Convention, so usage will feel familiar.
Whether you're retrieving a list of cards for a cardholder, accessing sensitive card information, or adding a card to the Google Wallet, our SDK makes it easy for you to provide this functionality to your users.
Using the SDK keeps you compliant with the Payment Card Industry Data Security Standards (PCI DSS).
If you have any specific questions about PCI compliance, reach out to your operations contact.
The SDK is distributed as a native Android dependency. If you have a hybrid project, review your hybrid platform's documentation for guidance on how to consume native third-party SDKs.
You should have SCA enabled for your users. Whilst we take care of in-depth compliance, you are required to perform SCA on your users as requested and documented.
Each authentication session can be used to simultaneously generate multiple tokens for different systems. For example, for sign in, or to get an SDK session token or an internal authentication token. However, only one SDK token can be generated from each SCA flow requested.
Use Gradle to import the SDK into your app.
In your project-level build.gradle
file, add:
repositories {
mavenCentral()
}
In your app-level build.gradle
file, add:
dependencies {
// Required to initialise the CardManagementDesignSystem
implementation "androidx.compose.ui:ui:$compose_ui_version"
implementation 'com.checkout:checkout-sdk-card-management-android:$checkout_card_management_version'
}
To start consuming SDK functionality, instantiate the main object, which enables access to the functionality:
import androidx.compose.ui.text.TextStyle
import com.checkout.cardmanagement.CheckoutCardManager
import com.checkout.cardmanagement.model.Environment
class YourObject {
// Customisable properties for the secure UI components delivered by the SDK
private val cardManagerDesignSystem = CardManagementDesignSystem(
textStyle = TextStyle(),
panTextSeparator = "-"
)
// The object through which the SDK functionality is accessed
private val cardManager = CheckoutCardManager(
context = context,
designSystem = cardManagerDesignSystem,
environment = Environment.SANDBOX
)
}
In order to provide your users with the SDK functionality, you must authenticate them for the session.
You are responsible for ensuring you authenticate a user for the session. This means your application should retrieve a session token from your authentication backend.
logInSession()
returns a boolean value of the token validation result. CheckoutCardManager
is allowed to operate getCards
only if the token is valid.
cardManager.logInSession("{Token_retrieved_from_your_backend}")
Once you've authenticated the cardholder and your application, you can return a list of non-sensitive card data using getCards
for that cardholder.
This returns the following card details:
- last 4 digits of the full card number, also known as the Primary Account Number (PAN)
- card's expiry date
- cardholder's name
- card's state (inactive, active, suspended, or revoked)
- a unique ID for each card returned
cardManager.getCards { result: Result<List<Card>> ->
result.onSuccess {
// You'll receive a list of cards that you can integrate within your UI
// The card info includes the last 4 digits (PAN), expiry date, cardholder name, card state, and id
}.onFailure {
// If something goes wrong, you'll receive an error with more details
}
}
The Card State Management API is an extension function of the Card
class, so you must first obtain it from the SDK.
Once you have the Card
object, we would also suggest using the card.possibleStateChanges
API for an improved user experience. Although it's not a hard requirement, you can request the possible new states from the card object before running the card management operation.
// This will return a list of possible states that the card can be transitioned to
val possibleNewStates = card.possibleStateChanges
// We can activate the card, if the state was returned by possibleStateChanges
if (possibleNewStates.contains(CardState.ACTIVE)) {
card.activate(completionHandler)
}
// We can suspend the card, if the state was returned by possibleStateChanges
if (possibleNewStates.contains(CardState.SUSPENDED)) {
// You can choose to pass an optional reason for why you're suspending the card
val reason: CardSuspendReason? = CardSuspendReason.LOST
card.suspend(reason, completionHandler)
}
// We can revoke the card, if the state was returned by possibleStateChanges
if (possibleNewStates.contains(CardState.REVOKED)) {
// This is a destructive and irreversible action - once revoked, the card cannot be reactivated
// We recommended that you request UI confirmation that your user intended to perform this action
// You can choose to pass an optional reason for why you're revoking the card
val reason: CardRevokeReason? = CardRevokeReason.STOLEN
card.revoke(reason, completionHandler)
}
Regardless of the new state requested, the same completion handler can be used:
fun cardStateChangeCompletionHandler(result: Result<Unit>): Unit {
result
.onSuccess {
// Card state has been updated successfully, and will be reflected by both the backend and the SDK
}.onFailure {
// If something goes wrong, you'll receive an error with more details
}
}
There are 4 possible card states, which apply to both virtual and physical cards:
Status | Description |
---|---|
Inactive | The card is awaiting activation and is unusable until then. By default, physical cards are set to inactive on creation. Cards cannot transition to inactive from any other status. |
Active | The card can process transactions as normal. By default, virtual cards are set to active on creation. |
Suspended | Card has been manually suspended by the cardholder; transactions are temporarily blocked. The card can be reactivated to allow for normal use. |
Revoked | Transactions are permanently blocked. The card cannot be reactivated from this status. |
The following example covers PIN, but similar APIs are available for PAN, CVV, and PAN + CVV. The general flow remains the same. The only different is the API for PAN + CVV it will return a pair of views instead of one.
These calls are subject to a unique SCA flow prior to every individual call. Only on completion of a specific authentication can a single-use token be requested and provided to the SDK, in order to continue executing the request.
val singleUseToken = "{Single_use_token_retrieved_from_your_backend_after_SCA}"
// Request sensitive data via the card object
card.getPin(singleUseToken) { result: Result<AbstractComposeView> ->
result
.onSuccess {
// If successful, you'll receive a Compose view that contains the secure data that you can display to the user
}.onFailure {
// If something goes wrong, you'll receive an error with more details
}
}
The UI component protects the value and safely delivers it to the user as the sole recipient. The UI component design can be adjusted as appropriate when creating the card manager and providing the CardManagementDesignSystem
.
Push Provisioning is the operation of adding a physical or virtual card to a digital wallet. On Android, this means adding a card to the Google Wallet so that card can be used for Google Pay.
Enabling this operation is highly complex as it requires interaction between multiple entities including you, Checkout.com, Google Pay, and the card scheme (in our case, Mastercard). As such, push provisioning is subject to additional onboarding and can only be tested in your Production environment. For more details on onboarding, please speak to your operations contact.
A typical call may look as follows:
card.provision(
activity = theActivityHandleTheProvisionOutcome,
cardholderID = "{id_of_cardholder_performing_operation}",
configuration = ProvisioningConfiguration(/* */),
token = "{specific_token_generated_for_operation}",
completionHandler = { result: Result<Unit> ->
// Callback after the operation has completed
}
)
When you attempt a push provisioning operation without completing proper onboarding will result in an intentional crash.
For Checkout.com issuing clients, please email [email protected] for any questions.