Nodle SDK - Android Integration
Integrating the Nodle SDK into your android app is easy and straightforward. Just follow the steps below and you should be ready to go in no time.
Step 1: Generate Public Key
Go and create a wallet -> https://learn.nodleprotocol.io/wallets/how-to-create-a-nodle-cash-wallet Make sure to save your private key
In the extension copy the
public_key
Proceed forward with next steps.
Step 2: Add the Maven Repository
Add the code below in your project's build.gradle
to add the Nodle repository
If you are using Android Studio Arctic Fox and newer AGP 7.0+ and GP 7.0+ please use the following. We are currently migrating the repository to HTTPS.
If you are using Android Studio Bumblebee and newer AGP 7.0.2+ and GP 7.0.2+ please use the following in your settings.gradle
If you are using Java as your language of choice please make sure to use the default Java Library version which is JDK 11 as of Android Studio Fox or Bumblebee update. Like that you can make sure your project works as expected between the Kotlin-Java and vice-versa compatibility. You can do that by following this path: Project Structure -> SDK Location -> Gradle Settings -> Gradle Projects -> Gradle JDK -> Select 11 or later.
Step 3: Add the NodleSDK dependency
In your app module's build.gradle
simply add the Nodle SDK dependency in gradle. Please node that nodlesdk depends by default on google play service. If your app runs on devices that doesn't have google play service, you can use a different flavour of the nodlesdk that doesn't depend on google play services. Our previous release supports API 30 with AGP 7.0.2+ and GP 7.1:
Our latest release provide full support for Android 12 API 31 with AGP 7.1.2+ and GP 7.2 you can simply add the Nodle SDK dependency in your build.gradle
If you are using the Google Play Services version please make sure to add the plugin. You can use the libraries we are using or the newest ones. We would try to support always the latest libraries. The minAPI-19 and maxAPI-31. We are also on the latest version of AGP 7.1.2+
The latest version of the stable-production SDK is 381d19b7b5
Step 4: Initialize the Nodle SDK
First you need to declare your application class in your ApplicationManifest.xml. And declare the required permissions for Nodle to be able to run:
In the onCreate
method of your application class you should initialize Nodle like this:
After you have verified that you have the required permissions in the manifest and you are initializing Nodle then you can proceed to next steps. When passing (this) to Nodle you will pass your application Context. Like this Nodle will be able to stay alive in your global application state.
Step 5: Run the Nodle SDK
In the onCreate
method of your launcher activity start Nodle by giving it the ss58:public_key
generated in Step 1:
You can find more info here: Nodle SDK - Android API and Configuration
Step 6 - Check Permission
The SDK expects a certain number of permission to be set. You must make sure that to request the following permissions from the user:
INTERNET
BLUETOOTH
BLUETOOTH_ADMIN
ACCESS_FINE_LOCATION
ACCESS_COARSE_LOCATION
ACCESS_BACKGROUND_LOCATION - API 29 and ABOVE
BLUETOOTH_SCAN - API 31 (ANDROID 12)
BLUETOOTH_ADVERTISE - API 31 (ANDROID 12)
BLUETOOTH_CONNECT - API 31 (ANDROID 12)
In order for NodleSDK to be able to work while in the background we require the ACCESS_BACKGROUND_LOCATION which Google Play Store has updated it's location policy and require extra steps for verification in Google Play Stores requiring the application developer to submit a video of the permissions usage. If you can't provide the requested usage description you can always strip the permission like this:
You may use third party libraries to request the permission to the user. For instance you can use the vanniktech library with RxPermission :
You can still use the same third-party library for Android 12 by adding the following permissions:
And there you have it! You’re good to go!
Want to check your SDK rewards?
Currently we have our dashboard under development and rewards are not available. If you want see your rewards we have a workaround for you to do that. Please follow the steps:
Configure it by creating a dummy account
Select System -> Accounts
You should see something like this if you have setup the extension properly:
Then you should see you dummy accountId
Click on the dummy accountId and paste your public_key
Then you should only see your public_key
Then click the green + on the right of the screen
Wait a second your rewards should be shown soon
That's it you should see your rewards. Make sure to add all permissions to the SDK in order to see your rewards. We have a lot of traffic so please bear with us since rewards might take a bit of time. But if you allow all the rules in SDK you should see the packets coming to the dashboard. Then rewards should be visible.
Last updated