Integration guide for how to integrate Klarna Checkout in your Android app, using the hybrid integration.
This guide will teach you how to:
The components in the hybrid approach are:
You will need Klarna Checkout integrated on a web page on your server. This integration guide will not go through the Klarna Checkout integration in detail, but assumes it has been set up already. If needed, you can learn how to do it in the regular Klarna Checkout Integration guide here.
The communication between your mobile app, Klarna’s SDK, your servers and Klarna’s servers.
Initialize the SDK with your web view. You first create a KlarnaCheckout object, and set the WebView to this object:
Param | Type | Description |
---|---|---|
currentActivity | Activity | The Activity that will contain the checkout view |
returnURL | String | URL schema as defined in your AndroidManifest.xml to return from external applications. Learn more about it here |
From your WebView, load the URL to the web page where you have integrated Klarna Checkout. The SDK will automatically run when it detects the Checkout snippet in the WebView:
The only event you need to listen to is the “complete event”. When the complete event is triggered, redirect the customer to the confirmation page within your app.
Following is a code example of how this is done:
Optionally, you may want to set up event listeners to track field changes in the Klarna Checkout before the order is placed. See the reference guide for what events are available.
When a server-side call to Klarna is being processed, you can trigger the 'suspend' action to prevent the user/customer from altering the state of their Checkout order. The suspend action will turn the Klarna Checkout unresponsive to user interactions.
checkout.suspend()
After the server-side call to Klarna has been processed, you should trigger the 'resume' action to once again let the user interact with Klarna Checkout.
checkout.resume()
If you wish to handle external payment methods (such as PayPal, Google Pay, etc), you can turn on the following feature flag in the SDK. By doing so, the Klarna Checkout will not handle the external payment methods automatically:
checkout.merchantHandlesEPM = true
Note: This flag should be set before starting the Checkout process.
Whenever the SDK reaches an external payment method selected by the customer, you will receive an event named 'external' in your callback with a 'uri' parameter pointing to the external payment’s URL:
override fun onSignal(eventName: String, jsonObject: JSONObject) {
if (eventName == "external") {
val externalPaymentUrl = jsonObject.getString("uri")
openExternalPayment(externalPaymentUrl)
}
}
@Override
public void onSignal(String eventName, JSONObject jsonObject) {
if (eventName.equals("external")) {
String externalPaymentUrl = jsonObject.getString("uri");
openExternalPayment(externalPaymentUrl);
}
}
If you wish to handle validation errors and you don’t want Klarna Checkout to show a pop-up window showing the errors, you can turn on the following feature flag in the SDK:
checkout.merchantHandlesValidationErrors = true
Note: This flag should be set before starting the Checkout process.
Whenever the SDK detects a validation error, you will receive an event named 'validation_error' in your callback with 'error_type' and 'error_text' parameters:
override fun onSignal(eventName: String, jsonObject: JSONObject) {
if (eventName == "validation_error") {
val errorType = jsonObject.getString("error_type")
val errorText = jsonObject.getString(“error_text”)
handleValidationError(errorType, errorText)
}
}
@Override
public void onSignal(String eventName, JSONObject jsonObject) {
if (eventName.equals("validation_error")) {
String errorType = jsonObject.getString("error_type");
String errorText = jsonObject.getString("error_text");
handleValidationError(errorType, errorText);
}
}
When you are done with the checkout, make sure to call destroy() to release resources.
Some payment methods require authorization through third-party applications. These can return to your application upon completion, but to do that, you need to supply a URL that should be used for returning. There do not need to be any special handlers on application load for that URL. Our only requirement is that the user is returned to your application from the third-party application.
In cases where the user needs to authenticate with their bank for credit card payments, the bank itself might open a third-party app such as Bank ID. Since the SDK does not create these sessions, the user would have to return to the app manually, and then you will get the completion signal from the checkout.
Success! You now have Klarna Checkout up and running in your mobile app.
Check out our git-hub page where you can