Nuclei SDK Dependencies
Nuclei Dependencies
Next, you can add the below Nuclei SDK dependencies in the app level build.gradle
file, and sync the gradle in your IDE. This will add the categories as dependencies into your project.
Latest Version : 9.2.1-RELEASE
def libraryVersion = '9.2.1-RELEASE'
// Mandatory: Base modules
implementation "com.nuclei.sdk:provider-bank:$libraryVersion"
Note:
- Nuclei SDK version 9.0.0 and above are compatible with Android 15 and require a minimum SDK version of 24.
If you are opting for additional categories such as Donation or Gold, please include the respective dependencies after the provider-bank dependency mentioned above.
def libraryVersion = '9.2.1-RELEASE'
// Optional: Choose only those of the below which your organization is integrating.
implementation "com.nuclei.sdk:donation:$libraryVersion"
implementation "com.nuclei.sdk:gold:$libraryVersion"
Note:
- Please add only those dependencies of the categories that the partner has subscribed to into your gradle file.
- Please look into the troubleshooting guide if needed.