đ§ Testing & Troubleshoot
Testing Your Appâ
-
Running the App Locally (FlutterFlow Built-In Run Mode)
- Go to the Run tab in FlutterFlow.
- Click Run Locally to test your app in a web browser.
-
Viewing the App in Full-Screen Mode
-
After launching the app in the browser, switch to Full-Screen Mode.
-
This will allow the browser to request and enable microphone access for voice features (like speech-to-text).
-
-
Swiping Between Web and Mobile Platforms
- Use
fetchSpeechAndPlayWeb
for web andfetchSpeechAndPlayMobile
for mobile in the onTap action of thestopRecordingButton
, depending on the platform.
- Use
Debugging & Troubleshootingâ
-
Verifying Permissions
- Android: Ensure microphone permissions are set in
AndroidManifest.xml
. - iOS: Check the
Info.plist
for microphone permissions.
- Android: Ensure microphone permissions are set in
-
Common Errors
- FlutterFlow: Check Error Logs in the Run Log for issues like invalid API keys or incorrect Firebase setup.
- browser console: For web-specific errors or warnings, open the browser's developer tools (press F12 or Ctrl + Shift + I in most browsers) and go to the Console tab. Look for any relevant error messages or warnings related to the app's execution, which can help diagnose issues with API calls or script execution.
- IDE Debugging: Use breakpoints and
flutter run --debug
for detailed logs.
-
Voice Recording Testing
- Simulator vs Real Device: Simulators may not simulate microphone access well. Always test voice features on real devices.
- Test on Real Devices:
- Android: Ensure microphone access and permissions.
- iOS: Ensure
NSMicrophoneUsageDescription
is set inInfo.plist
.