How It Works
- Participant opens the quest in the Fusion mobile app
- Taps on an experiment card to start
- The experiment loads in a full-screen WebView
- Screen locks to landscape orientation for the duration of the experiment
- When the experiment calls
jatos.endStudy(data), the data is captured - Screen returns to portrait orientation
- A completion alert shows the number of trials recorded
Data Flow
Data is saved locally first, so experiment data is not lost if the participant loses connectivity during or after the experiment. It syncs to the server automatically when a connection is available.
Differences from Web
Export on Mobile
Participants can export their experiment data directly from the mobile app:- Navigate to the completed experiment
- Use the export option
- Data is saved as a JSON file and shared via the device’s share sheet (AirDrop, email, Files, etc.)
expo-file-system and expo-sharing under the hood.
When to Use Mobile vs. Web
Tips
- Experiments run on both iOS and Android through the Fusion app
- The same experiment code works on both web and mobile — no separate version needed
- Mobile data is tagged with source
mobileso you can distinguish it from web data in your analysis - If your experiment uses touch input instead of keyboard, it will work naturally on mobile
- Benign CORS “Script error.” messages are automatically filtered on mobile

