---
page_title: Enabling SIMPL Wallet for transactions Using Juspay Payment Page
product: Payment Method Integrations
platform: HyperCheckout
page_source: https://juspay.io/br/docs/payment-method-integrations/hypercheckout/simpl-wallet-integration/enabling-simpl-wallet-for-transactions-using-juspay-payment-page
llms_txt: https://juspay.io/br/docs/llms.txt
product_llms_txt: https://juspay.io/br/docs/payment-method-integrations/llms.txt
---

**Enabling Simpl Wallet for transactions Using Juspay SDK:** 

1. **SDK version :** Please use the following link for the latest SDK version : [https://developer.juspay.in/v2.0/docs/release-notes#version-2112](https://developer.juspay.in/v2.0/docs/release-notes#version-2112)
2. **Getting the SDK :**  Currently, SDK is available as a Gradle dependency. Add the following maven repository to the build.gradle. Please make sure that you add it to the project dependency section. _(ex:build.gradle (Project:ProjectName) )_ 
   
   
   #### JSON Code Snippet:
   
   ```json
   repositories {
   mavenCentral()
   maven { url "https://maven.juspay.in/jp-build-packages/hyper-sdk/" }
   maven { url "https://maven.getsimpl.com"}
   }
   
   ```
3. Then add the Simpl Fingerprinting SDK as a dependency.
   
   
   #### JSON Code Snippet:
   
   ```json
   implementation 'in.juspay:hypersdk:2.1.11',
   implementation 'com.simpl.android:fingerprintSDK:1.1.4'
   
   ```

> **Note**
> Verify that you are loading the Simpl Fingerprinting SDK properly by logging  _**Log.d("SimplFingerprint", SimplFingerprint.getInstance().toString());**_ **** in the Logcat console. You should receive an Object in return.
> 
> 





---

## See Also

- [Configuring SIMPL Wallet on the Juspay Unified Dashboard](https://juspay.io/br/docs/payment-method-integrations/hypercheckout/simpl-wallet-integration/configuring-simpl-wallet-on-the-juspay-unified-dashboard)
- [Session API Reference ](https://juspay.io/br/docs/payment-method-integrations/hypercheckout/simpl-wallet-integration/session-api-reference)
