Cashfree’s Android SDK provides a comprehensive payment solution that integrates the payment gateway into your Android applications, supporting Android SDK version 19 and above. The SDK offers multiple checkout flows including web checkout and UPI Intent checkout.
Ensure your application complies with Cashfree’s Integrity standards. Applications that don’t meet the required integrity standards may be restricted from using production services.
The Android integration consists of three essential steps:
To integrate the Cashfree Payment Gateway, you must first create an order. Complete this step before you process any payments. Configure an endpoint on your server to handle order creation. You can’t call this API from the client-side.
Create orders through your server as this API requires your secret key. Don’t call it directly from your mobile application.
API request for creating an order
Here’s a sample request for creating an order using your desired backend language. Cashfree offers backend SDKs to simplify the integration process.
Copy
Ask AI
import { Cashfree, CFEnvironment } from "cashfree-pg";const cashfree = new Cashfree( CFEnvironment.PRODUCTION, "{Client ID}", "{Client Secret Key}");function createOrder() { var request = { order_amount: "1", order_currency: "INR", customer_details: { customer_id: "node_sdk_test", customer_name: "", customer_email: "example@gmail.com", customer_phone: "9999999999", }, order_meta: { return_url: "https://test.cashfree.com/pgappsdemos/return.php?order_id=order_123", }, order_note: "", }; cashfree .PGCreateOrder(request) .then((response) => { var a = response.data; console.log(a); }) .catch((error) => { console.error("Error setting up order request:", error.response.data); });}
After successfully creating an order, you will receive a unique order_id and payment_session_id that you need for subsequent steps.You can view all the complete API request and response for /ordershere.
The Cashfree Android SDK is hosted in Maven Central. You can download the latest version here. The Android SDK supports Android SDK version 19 and above.Add the following dependency to your app’s build.gradle file:
The Android SDK offers the following payment flows:
Web Checkout
In this flow, the SDK provides a webview-based checkout implementation to facilitate a quick integration with the payment gateway. Your customers can fill in the necessary details in the web page and complete the payment.
This mode handles all the business logic and UI components to make the payment smooth and easy to use.
UPI Intent Checkout
This flow is for merchants who want to provide UPI Intent functionality using Cashfree’s mobile SDK. In this flow, the SDK provides a pre-built native Android screen to facilitate integration with the payment gateway. Your customers see a list of UPI apps installed on their phone which they can select to initiate payment.
This mode handles all the business logic and UI components to make the payment smooth and easy to use. The SDK allows you to customise the UI in terms of colour coding and fonts.
This object contains essential information about the order, including the payment session ID (payment_session_id) and order ID (order_id) obtained from Step 1. It also specifies the environment (sandbox or production).
Copy
Ask AI
CFSession cfSession = new CFSession.CFSessionBuilder() .setEnvironment(CFSession.Environment.SANDBOX) .setPaymentSessionID("paymentSessionID") .setOrderId("orderID") .build();
This object combines all the configurations (session, theme) into a single checkout configuration. Finally, call doPayment() to open the Cashfree web checkout screen. This will present the user with the payment options and handle the payment process.
Copy
Ask AI
CFWebCheckoutPayment cfWebCheckoutPayment = new CFWebCheckoutPayment.CFWebCheckoutPaymentBuilder() .setSession(cfSession) .setCFWebCheckoutUITheme(cfTheme) .build();
UPI Intent Checkout
Use CFUPIIntentCheckoutPayment to create the payment object for UPI Intent flow. This object accepts a CFSession and theme configuration.
Copy
Ask AI
CFUPIIntentCheckout cfupiIntentCheckout = new CFUPIIntentCheckout.CFUPIIntentBuilder() // Use either the enum or the application package names to order the UPI apps as per your needed // Remove both if you want to use the default order which cashfree provides based on the popularity // NOTE - only one is needed setOrder or setOrderUsingPackageName .setOrder(Arrays.asList(CFUPIIntentCheckout.CFUPIApps.BHIM, CFUPIIntentCheckout.CFUPIApps.PHONEPE)) .setOrderUsingPackageName(Arrays.asList("com.dreamplug.androidapp", "in.org.npci.upiapp")) .build();CFUPIIntentCheckoutPayment cfupiIntentCheckoutPayment = new CFUPIIntentCheckoutPayment.CFUPIIntentPaymentBuilder() .setSession(cfSession) .setCfUPIIntentCheckout(cfupiIntentCheckout) .setCfIntentTheme(cfTheme) .build();
The SDK exposes an interface CFCheckoutResponseCallback to receive callbacks from the SDK once the payment journey ends.This interface consists of 2 methods:
Copy
Ask AI
public void onPaymentVerify(String orderID)public void onPaymentFailure(CFErrorResponse cfErrorResponse, String orderID)
Make sure to set the callback at activity’s onCreate as this also handles the activity restart cases.
Copy
Ask AI
public class YourActivity extends AppCompatActivity implements CFCheckoutResponseCallback { ... @Override public void onPaymentVerify(String orderID) { } @Override public void onPaymentFailure(CFErrorResponse cfErrorResponse, String orderID) { } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_upi_intent_checkout); try { // If you are using a fragment then you need to add this line inside onCreate() of your Fragment CFPaymentGatewayService.getInstance().setCheckoutCallback(this); } catch (CFException e) { e.printStackTrace(); } } ...}
Finally, call doPayment() to open the Cashfree checkout screen. This will present the user with the payment options and handle the payment process.
Web Checkout
Copy
Ask AI
// replace the WebCheckoutActivity class with your class nameCFPaymentGatewayService.getInstance().doPayment(WebCheckoutActivity.this, cfWebCheckoutPayment);
UPI Intent Checkout
Copy
Ask AI
// replace the UPIIntentCheckoutActivity class with your class nameCFPaymentGatewayService.getInstance().doPayment(UPIIntentCheckoutActivity.this, cfupiIntentCheckoutPayment);
After the customer completes the payment, you must confirm the payment status. Once the payment finishes, the user redirects back to your activity.To verify an order you can call our /pg/orders endpoint from your backend. You can also use our SDK to achieve the same.
Always verify the order status before you deliver services to the customer. You can use the Get Order API for this. An order is successful when the order_status is PAID.
To confirm the error returned in your Android application, you can view the error codes that are exposed by the SDK.
Show error codes
Error codes
Message
MISSING_CALLBACK
The callback is missing in the request.
ORDER_ID_MISSING
The “order_id” is missing in the request.
CARD_EMI_TENURE_MISSING
The “emi_tenure” is missing or invalid (It has to be greater than 0).
INVALID_UPI_APP_ID_SENT
The id sent is invalid. The value has to be one of the following: “tez://”,“phonepe://”,“paytm://”,“bhim://. Please refer the note in CFUPI class for more details”
INVALID_PAYMENT_OBJECT_SENT
The payment object that’s set doesn’t match any payment mode. Please set the correct payment mode and try again.
WALLET_OBJECT_MISSING
The CFWallet object is missing in the request
NETBANKING_OBJECT_MISSING
The CFNetbanking object is missing in the request.
UPI_OBJECT_MISSING
The CFUPI object is missing in the request.
CARD_OBJECT_MISSING
The CFCard object is missing in the request.
INVALID_WEB_DATA
The url seems to be corrupt. Please reinstantiate the order.
SESSION_OBJECT_MISSING
The “session” is missing in the request
PAYMENT_OBJECT_MISSING
The “payment” is missing in the request
ENVIRONMENT_MISSING
The “environment” is missing in the request.
ORDER_TOKEN_MISSING
The “order_token” is missing in the request.
CHANNEL_MISSING
The “channel” is missing in the request.
CARD_NUMBER_MISSING
The “card_number” is missing in the request.
CARD_EXPIRY_MONTH_MISSING
The “card_expiry_mm” is missing in the request.
CARD_EXPIRY_YEAR_MISSING
The “card_expiry_yy” is missing in the request.
CARD_CVV_MISSING
The “card_cvv” is missing in the request.
UPI_ID_MISSING
The “upi_id” is missing in the request
WALLET_CHANNEL_MISSING
The “channel” is missing in the wallet payment request
WALLET_PHONE_MISSING
The “phone number” is missing in the wallet payment request
NB_BANK_CODE_MISSING
The “bank_code” is missing in the request
WRONG_CALLING_CONTEXT
Calling context must be activity or fragment
NO_UPI_APP_AVAILABLE
You don’t have any UPI apps installed or ready for payment.
NO_EMI_PLAN_AVAILABLE
This account doesn’t have EMI plans configured, or the order amount is less than 2499
If you require to initialise the SDK yourself then follow the steps below. Make sure to initialise the SDK in Application class to avoid any Runtime issues.
To enable SDK logging add the following to your values.xml file.<integer name="cashfree_pg_logging_level">3</integer>Following are the Logging levels.
VERBOSE = 2
DEBUG = 3
INFO = 4
WARN = 5
ERROR = 6
ASSERT = 7
(Optional) Disable Quick Checkout in Payment Page
If you want to disable quick checkout flow in the payment journey you can add the following to your values.xml file.<bool name="cf_quick_checkout_enabled">false</bool>
(Optional) Disable Encrypted SharedPreference
Add the following to your values.xml file.<bool name="cashfree_pg_core_encrypt_pref_enabled">false</bool>
Affiliate partner program
As a developer building payment experiences for your clients, you can earn additional income while providing them with industry-leading payment solutions.