Quickstart
This page provides the shortest path to integrate Fidbek on iOS, Android, and Flutter.
1. Prepare your SDK token
Create or select your project/workspace and obtain the SDK token used by mobile apps.
2. Add the SDK dependency
iOS (SPM)
- Package URL:
https://github.com/Saltware-Tech/fidbek-ios.git - Product:
FidbekSDK - Version:
0.1.0
Android (Maven)
maven("https://raw.githubusercontent.com/Saltware-Tech/fidbek-android/main/maven")
implementation("com.fidbek:fidbek-android:0.1.0")
Flutter (pub.dev)
dependencies:
fidbek_flutter: ^0.1.0
3. Initialize on app startup
iOS
Fidbek.shared.configure(
token: "YOUR_TOKEN"
)
Android
Fidbek.initialize(
application = this,
token = "YOUR_TOKEN"
)
Flutter
await FidbekFlutter.configure(
token: "YOUR_TOKEN",
);
4. Add manual trigger action
iOS
Fidbek.shared.present()
Android
Fidbek.open()
Flutter
await FidbekFlutter.open();
Endpoint behavior
The report endpoint is fixed internally in SDK 0.1.0:
https://api.fidbek.dev/v1/sdk/reports
Next: How It Works