Initialise-sdk
sidebar_position: 2
#Initialise SDK
##Step 1: Installation Install the SDK on your preferred platform with following installation guide
- [iOS installation]
- [Android installation]
- [Flutter installation]
##Step 2: Initialise SDK
After installing the SDK for your app, the next step is to initialise and configure it. Before initialising you will have to copy the public key from Settings page on SurgeGrowth dashboard.
- JavaScript
- Python
- Java
function helloWorld() {
console.log('Hello, world!');
}
def hello_world():
print("Hello, world!")
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello, World");
}
}