Nodle SDK - iOS Integration
Integrating the Nodle SDK into your iOS 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: Install the SDK
Install the SDK via Cocoapods:
Install CocoaPods. If you don't have an existing Podfile
, run pod init
in your project directory. Add the following to your Podfile
:
pod 'NodleSDK'
The latest version of the stable-production SDK is 0.0.13
We recommend to add the following dependency which should be automatically pulled but if you encounter any issues you can add them to your Podfile like this:
# Pods for NodleSDK
pod 'SQLite.swift', '~> 0.13.2'
pod 'SwiftCBOR', '~> 0.4.5'
pod 'SwiftProtobuf', '~> 1.19.0'
Then, run pod install
. You may also need to run pod install --repo-update
.
Add the SDK manually:
You can also add the SDK to your project manually. Download the current release, unzip the package, and drag the version of the SDK that you want use for example the version with CoreBluetooth NodleSDK.xcframework
into your Xcode project. It will automatically appear in the Frameworks, Libraries, and Embedded Content section of your target settings. Switch Do Not Embed to Embed & Sign.
We recommend to add the following dependency which should be automatically pulled but if you encounter any issues you can add them to your Podfile like this:
# Pods for NodleSDK
pod 'SQLite.swift', '~> 0.13.2'
pod 'SwiftCBOR', '~> 0.4.5'
pod 'SwiftProtobuf', '~> 1.19.0'
Then, run pod install
. You may also need to run pod repo update
. If you run into trouble with pod please install cocoapods-deintegrate and run pod deintegrate
and also you would need to remove your cache we recommend you do the following:
rm -rf ~/Library/Caches/CocoaPods; rm -rf Pods; rm -rf ~/Library/Developer/Xcode/DerivedData/*; pod deintegrate;
Then make sure you are using one of the latest cocoapods versions 1.11+ due to issues with cocoapods not picking dependency properly you need to set the following script on top of your Podfile. You can find example Podfile below:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
end
# If any errors for example dyld: Symbol not found please use pod deintegrate and pod install again. You should remove your
# Podfile.lock and workspace and let cocoapods generate it for you if you are having
# trouble. Make sure you close and open the workspace when you are doing all above before
# pod install again.
platform :ios, '13.0'
# use_modular_headers!
target 'YourTarget' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for TestApp
pod 'NodleSDK'
pod 'SQLite.swift', '~> 0.13.2'
pod 'SwiftCBOR', '~> 0.4.5'
pod 'SwiftProtobuf', '~> 1.19.0'
end
You could do the same manually by adding the ['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES' to your Pod project settings. If you are on older version of cocoapods before 1.9- you will not need to do anything and you can simply proceed to next steps.
NodleSDK issues with dependencies:
If you are experiencing issues please make sure the correct version of the dependencies are in your Podfile.lock as an example with our latest version of the dependencies found here:
SQLite.swift: 4fc2be46c36392e3b87afe6fe7f1801c1daa07ef
SwiftCBOR: ac340b74d3b2cf1f8884bb748bd09875848e3873
SwiftProtobuf: 6ef3f0e422ef90d6605ca20b21a94f6c1324d6b3
If you are having trouble with the dependencies loading for older versions of our SDK please make sure they are corrected in the Podfile.lock file. Example for older versions of dependencies:
SQLite.swift: 4fc2be46c36392e3b87afe6fe7f1801c1daa07ef
SwiftCBOR: ce5354ec8b660da2d6fc754462881119dbe1f963
SwiftProtobuf: c3c12645230d9b09c72267e0de89468c5543bd86
After you have corrected them in the file to the correct versions and CHECKSUMS simply run pod install
.
NodleSDK requirements:
We are currently using the following setup:
cocoapods: 1.10+
swift: 5+
XCode: 12.5.1 and above
build-system: New Build System
ios: 13.0+
Step 3: Add the NodleSDK dependency
The SDK depends on Apple's CoreLocation, CoreBluetooth
framework. In your target settings, go to General > Frameworks, Libraries, and Embedded Content and add CoreLocation, CoreBluetooth
if you haven't already. If you are using the build without CoreBluetooth you will need to add only CoreLocation
Step 4: Initialize the Nodle SDK
First you need to init the NodleSDK in your AppDelegate like below:
import UIKit
import SwiftCBOR
import SwiftProtobuf
import NodleSDK
import SQLite
import CoreLocation
import CoreBluetooth
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
let nodle = Nodle.sharedInstance
}
Or you can initialize the NodleSDK in your ViewController like below:
import UIKit
import SwiftCBOR
import SwiftProtobuf
import NodleSDK
import SQLite
import CoreLocation
import CoreBluetooth
class ViewController: UIViewController, CLLocationManagerDelegate, CBCentralManagerDelegate {
private let locationManager = CLLocationManager()
var centralManager: CBCentralManager?
let nodle = Nodle.sharedInstance
}
Then you can proceed to next steps below. Please make sure that you have added and request all permissions and dependency before you run the SDK.
Step 5: Run the Nodle SDK
In the AppDelegate
or ViewController
you can start Nodle by giving it your public key in the following format ss58:public_key
generated in Step 1:
import UIKit
import SwiftCBOR
import SwiftProtobuf
import NodleSDK
import SQLite
import CoreLocation
import CoreBluetooth
// start the sdk
Nodle().start("ss58:public_key");
You can find more info here: Nodle SDK - iOS API and Configuration
Step 6: Request Permissions
Before requesting permissions, you must add location usage strings to your Info.plist
file. We require a couple permissions and they have to be added like below:
// NodleSDK
NSBluetoothAlwaysUsageDescription - Need for our bluetooth scan
NSBluetoothPeripheralUsageDescription - Need for our bluetooth scan
NSLocationAlwaysUsageDescription - Need for our location request from the background
NSLocationAlwaysAndWhenInUseUsageDescription - Need for our location request from background
NSLocationWhenInUseUsageDescription - Need for our location request
NSLocationUsageDescription - Need to be able to perform additional changes to
location while in the background.
// NodleSDKWCB
NSLocationAlwaysUsageDescription - Need for our location request from the background
NSLocationAlwaysAndWhenInUseUsageDescription - Need for our location request from the background
NSLocationWhenInUseUsageDescription - Need for our location request
NSLocationUsageDescription - Need to be able to perform additional changes to
location while in the background.
Here is a small example how it should look like when configured:

The NodleSDK require Bluetooth and Location permissions to be added before it is started. The NodleSDKWCB doesn't require Bluetooth. Then you can proceed to next step and request permissions for Location and Bluetooth via one of the two approaches listed below depending on your choice:
Request permissions manually for NodleSDK without any third party:
import UIKit
import SwiftCBOR
import SwiftProtobuf
import NodleSDK
import SQLite
import CoreLocation
import CoreBluetooth
class ViewController: UIViewController, CLLocationManagerDelegate, CBCentralManagerDelegate {
private let locationManager = CLLocationManager()
var centralManager: CBCentralManager?
let nodle = Nodle.sharedInstance
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
// set manager for permissions
locationManager.delegate = self
// check status for location permission
switch CLLocationManager.authorizationStatus() {
case .authorizedWhenInUse, .authorizedAlways:
// request always auth if you would use it in the background
locationManager.requestAlwaysAuthorization()
// ask for bluetooth permissions
centralManager = CBCentralManager(delegate: self, queue: nil)
case .notDetermined:
// ask for permissions if background otherwise use whenInUse
locationManager.requestAlwaysAuthorization()
default:
print("Location permission denied")
break;
}
}
func startNodle() {
// start the sdk
nodle.start(devKey: "ss58:5FUfDdHhtn5Bzgte69zr1NyNRS7zFqy7CnjVcRUUpWpXz3Cv", tags: "","")
}
func stopNodle() {
// stop the sdk
nodle.stop()
}
func centralManagerDidUpdateState(_ central: CBCentralManager) {
switch central.state {
case .poweredOn:
// start Nodle after Bluetooth permissions have been granted
startNodle()
break
case .poweredOff:
// stop nodle
stopNodle()
break
default:
break
}
}
func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) {
// handle success
if status == .authorizedWhenInUse || status == .authorizedAlways {
print("Location permission have been granted")
// ask for ble permissions
centralManager = CBCentralManager(delegate: self, queue: nil)
}
}
}
Request permissions manually for NodleSDKWCB without any third party:
import UIKit
import SwiftCBOR
import SwiftProtobuf
import NodleSDK
import SQLite
import CoreLocation
class ViewController: UIViewController, CLLocationManagerDelegate {
private let locationManager = CLLocationManager()
let nodle = Nodle.sharedInstance
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
// set manager for permissions
locationManager.delegate = self
// check status for location permission
switch CLLocationManager.authorizationStatus() {
case .authorizedWhenInUse, .authorizedAlways:
// request always auth if you would use it in the background
locationManager.requestAlwaysAuthorization()
case .notDetermined:
// ask for permissions if background otherwise use whenInUse
locationManager.requestAlwaysAuthorization()
default:
print("Location permission denied")
break;
}
}
func startNodle() {
// start the sdk
nodle.start(devKey: "ss58:5FUfDdHhtn5Bzgte69zr1NyNRS7zFqy7CnjVcRUUpWpXz3Cv", tags: "","")
}
func stopNodle() {
// stop the sdk
nodle.stop()
}
func locationManager(_ manager: CLLocationManager, didChangeAuthorization status: CLAuthorizationStatus) {
// handle success
if status == .authorizedWhenInUse || status == .authorizedAlways {
print("Location permission have been granted")
// start Nodle after Location permissions have been granted
startNodle()
} else {
// stop nodle if permissions revoked
stopNodle()
}
}
}
Request permissions via third party - SPPermissions
We recommend the SPPermissions third party library to request permissions:
// MARK: 1. Choose the permissions you need:
let permissions: [SPPermissions.Permission] = [.location, .bluetooth]
// MARK: 2. Choose present style:
// 2a. List Style
let controller = SPPermissions.list(permissions)
controller.present(on: self)
// 2b. Dialog Style
let controller = SPPermissions.dialog(permissions)
controller.present(on: self)
// 2c. Native Style
let controller = SPPermissions.native(permissions)
controller.present(on: self)
// MARK: 3. Optional: Check permission state (available `authorized`, `denied`, `notDetermined`):
let authorized = SPPermissions.Permission.calendar.authorized
Please follow their guide how to install and setup the request. After permissions are requested and given the NodleSDK should work as expected.
And there you have it! You’re good to go!
Step 7: Run Nodle SDK in Background (Optional)
With our latest update NodleSDK is able to perform background scanning. In order to work please make sure to allowAlwaysAuthorization for background permissions and Background Modes. Then the SDK will then be working in the background for you. You can chose one of the modes that you would want to adopt or you can disable it. Depending on the permissions that are allowed the SDK will be able to perform different actions in each of the modes.
Enabling background modes - required
The NodleSDK requires certain Background Modes to be enabled in order to perform background scanning. Here is example of the ones you need to enable:

You don't have to register and schedule background tasks for the SDK but you must enable the option in some of the modes that we require. Please head out to our configuration page here: Nodle SDK - iOS API and Configuration
Improved background scanning with Background Tasks
If you want to improve the background scanning because you have chosen a specific mode. You can allow Nodle to perform some background tasks for you when possible. You must add the following task: io.nodle.sdk.ios.bgrefresh
to your Info.plist
file under the section: BGTaskSchedulerPermittedIdentifiers
Here is a small example how it should look like when configured:

Then make sure you enabled all permissions that are required. You can proceed to register the NodleBackgroundTask by doing the following in you AppDelegate application method:
import UIKit
import SwiftCBOR
import SwiftProtobuf
import NodleSDK
import SQLite
import CoreLocation
import CoreBluetooth
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
// init nodle sdk
let nodle = Nodle.sharedInstance
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// register background task for nodle sdk
nodle.registerNodleBackgroundTask()
return true
}
}
Then you can proceed to schedule your tasks once your application enters background by doing the following:
import UIKit
import SwiftCBOR
import SwiftProtobuf
import NodleSDK
import SQLite
import CoreLocation
import CoreBluetooth
@main
class AppDelegate: UIResponder, UIApplicationDelegate {
// init nodle sdk
let nodle = Nodle.sharedInstance
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// register background task for nodle sdk
nodle.registerNodleBackgroundTask()
return true
}
func applicationDidEnterBackground(_ application: UIApplication) {
// schedule background task for nodle sdk
nodle.scheduleNodleBackgroundTask()
}
}
If you are using SceneDelegates don't forget to add the following call to your delegate method by doing the following:
import UIKit
class SceneDelegate: UIResponder, UIWindowSceneDelegate {
func sceneDidEnterBackground(_ scene: UIScene) {
// call app delegate method
(UIApplication.shared.delegate as? AppDelegate)?.applicationDidEnterBackground((UIApplication.shared))
}
}
You have successfully configured the NodleSDK to perform background scanning.
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
Was this helpful?