iOS SDK 15.6.7,
Android SDK 15.5.3,
Hello Screen Dynamic States,
Bluedot Cordova plugin 4.0.1,
Bluedot Xamarin Android wrapper 15.5.2,
Bluedot Xamarin iOS wrapper 15.6.6,
Bluedot React Native wrapper 2.3.0,
To get the base SDK loaded and running, you’ll need to:
Before you start integrating Bluedot make sure you have access to Canvas – your Bluedot dashboard. This where you can access a ProjectID
to initialize the Web SDK.
The Project ID of a project can be found in the Projects section of Canvas.
If you’re not sure how to log in contact us on help@bluedot.io & we’ll help you out.
Add the Bluedot Javascript SDK to your project using:
npm install @bluedot-innovation/javascript-sdk --save
In your initialization method, initialize the JS SDK with:
// ES Module style import { bluedot } from "@bluedot-innovation/javascript-sdk" // or CommonJS style const bluedot = require("@bluedot-innovation/javascript-sdk").bluedot; ... bluedot.initialize("<yourProjectId>")