Create or select a workspace
The first time you sign in you land on the workspace onboarding screen, titled “Welcome to FlowPilot” with the prompt “Create or select a workspace to get started”.Create a new workspace
In the Create a new workspace card, type a name in the Workspace name field (for example,
My Workspace) and click Create Workspace. The button shows “Creating…” while it works, then takes you to the dashboard.TODO: screenshot of the workspace onboarding screen.
Create an app
Apps live under Settings -> Apps. Open the app switcher in the sidebar and choose Manage apps, or go to workspace settings and select the Apps tab.Open the Apps tab
In Settings, select Apps. You see a card for each existing app and an Add App button.
Add the app
Click Add App. In the Create App dialog, fill in:
- App Name: a display name, for example
My iOS App. - Platform: one of iOS, Android, React Native, Flutter, or Web.
- Bundle ID (optional): your iOS bundle ID or Android package name, for example
com.example.myapp. This is metadata only.
TODO: screenshot of the Apps tab with an app card showing the App ID.
| Label | Value |
|---|---|
| iOS | ios |
| Android | android |
| React Native | react_native |
| Flutter | flutter |
| Web | web |
These docs cover the iOS Swift SDK only. You can create apps for other platforms, but the SDK integration pages here are iOS-specific.
App ID vs bundle ID
- App ID is the value the SDK needs. Pass it to
FlowPilotConfiguration(appId:). See Configuration. - Bundle ID is optional metadata for your reference. The SDK does not use it to resolve flows.
Switch between apps
The app switcher sits in the sidebar. It shows the current app’s platform icon and name. Open it to:- See an Apps list of every app in the workspace, each with its platform shown beneath the name. A check marks the active app.
- Choose Manage apps to jump to Settings -> Apps.
- Persists your choice (it is remembered the next time you open the dashboard).
- Re-scopes the dashboard so flows, placements, experiments, and analytics all reflect the chosen app.
- Clears stale data from the previous app so you never see mixed numbers.
The default app
One app in the workspace is marked as the default and shows a “Default” badge on its card. The default app cannot be deleted. Other apps have a delete action, which removes the app along with all of its flows, placements, and experiments. This cannot be undone.Common mistakes
- Designing flows under the wrong app. Flows, placements, and experiments belong to a single app. Before you build, confirm the app switcher shows the app you intend to ship to.
- App ID mismatch in the SDK. The
appIdyou pass toFlowPilotConfigurationmust be the app that owns the placement you are presenting. If they differ, the placement resolves to no flow and nothing shows. - Confusing App ID with bundle ID. The SDK uses the App ID. The bundle ID is metadata only.