Skip to content

Commit bb759de

Browse files
committed
improved formating.
1 parent c943c42 commit bb759de

File tree

4 files changed

+20
-18
lines changed

4 files changed

+20
-18
lines changed

docs/troubleshooting/deployment/codemagic_deployment_error_identification.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ Follow the steps below to identify your codemagic error:
3030
- Now, press **Cmd/Ctrl + F** to search for the term **"error"** in the logs to find the root cause of the issue. Keep pressing **"Enter"** till you find the error ( this is usually at the bottom of the logs ).
3131

3232
If you search for "error" and still don't find an error message that makes sense to you then you can also try with the following keyword:
33-
- message
33+
34+
**message**
3435

35-
![](../assets/20250430121347925706.png)
36+
![](../assets/20250430121347925706.png)
3637

37-
- Now select and copy this error message and paste it in the Help Center search in the chat icon in the bottom-right corner to search the error. This will help you find the help article for this issue and then you can find the fix for it.
38+
- Now select and copy this error message and paste it in the Help Center search in the chat icon in the bottom-right corner to search the error. This will help you find the help article for this issue and then you can find the fix for it.
3839

39-
![](../assets/20250430121348293622.gif)
40+
![](../assets/20250430121348293622.gif)

docs/troubleshooting/deployment/codemagic_deployment_tips.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ title: CodeMagic Deployment Tips
88
Here are some tips to avoid Deployment issues:
99

1010
:::tip
11-
- Make sure you've followed all the steps for setting up deployment in your project.
11+
- Make sure you've followed all the steps for [setting up deployment](http://localhost:3000/deployment/deploy-for-environments/#mobile-deployment)
12+
in your project.
1213
- If you choose a deployment source from a GitHub Repository then please make sure that it's associated with FlutterFlow's GitHub integration.
1314
- If you are deploying to the Play Store from a GitHub repo, make sure to modify your build.gradle file to sign in release mode.
1415
- Setting a version number is optional but may be required for specific cases. If you are updating an existing app that has not been deployed using FlutterFlow yet, you will want to specify a version number.

docs/troubleshooting/deployment/resolve_errors_in_downloaded_code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ When you download your project from FlutterFlow and run it locally in your IDE,
2929

3030
3. **Upgrading or Downgrading to the correct Flutter version**
3131

32-
If the current version on your machine is different than what is currently supported by FlutterFlow, you can downgrade or upgrade to the supported version. You can learn more about upgrading our Flutter [here](https://docs.flutterflow.io/deploying-your-app/testing-your-app/testing-on-mobile-device#id-2.-verify-correct-flutter-version). ​By following these steps, you can fix the errors that you face after downloading the code and run locally.
32+
If the current version on your machine is different than what is currently supported by FlutterFlow, you can downgrade or upgrade to the supported version. You can learn more about [**upgrading Flutter**](https://docs.flutterflow.io/deploying-your-app/testing-your-app/testing-on-mobile-device#id-2.-verify-correct-flutter-version). ​By following these steps, you can fix the errors that you face after downloading the code and run locally.
3333

3434
If you continue to experience issues, contact the FlutterFlow support team via live chat or email at [email protected].
3535

docs/troubleshooting/deployment/run_mode_build_failure.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Encountering a "Run mode: Build failed" error can be frustrating when you're eag
99

1010
This guide provides a structured approach to troubleshooting and resolving "Run mode: Build failed" errors, ensuring a smooth development process for your projects.
1111

12-
1. **Recognizing the Error**
12+
- **Recognizing the Error**
1313

1414
Here's what the "Run mode: Build failed" error looks like inside of FlutterFlow:
1515

1616
![](../assets/20250430121148301014.png)
1717

18-
2. **Understanding Test Mode vs. Run Mode**
18+
- **Understanding Test Mode vs. Run Mode**
1919

2020
Here's a little background on run mode vs. test mode in FlutterFlow. Test mode runs as a "test" to help you identify errors before deployment. These features include a debugger and display warnings. Alternatively, run mode attempts to run the app in **release mode** to better mimic what your users can expect in production. In release mode, **warnings are mostly suppressed**, meaning it's important to ensure you are acknowledging and addressing warnings in debug mode before you enter run mode.
2121

@@ -33,7 +33,7 @@ This guide provides a structured approach to troubleshooting and resolving "Run
3333

3434
## Common Scenarios and Solutions
3535

36-
1. **Custom Code Failures**
36+
- **Custom Code Failures**
3737

3838
- **Issue**: Your project's custom code doesn't show errors within the editor, but errors appear when you try to run the app.
3939

@@ -43,7 +43,7 @@ This guide provides a structured approach to troubleshooting and resolving "Run
4343

4444
- **Best practice**: Consider running the code locally on a sample Flutter project before implementing the custom code inside FlutterFlow to identify possible errors logged.
4545

46-
2. **Widget Failures**
46+
- **Widget Failures**
4747

4848
- **Issue**: A widget within your app causes the build to fail due to errors.
4949

@@ -57,43 +57,43 @@ This guide provides a structured approach to troubleshooting and resolving "Run
5757

5858
- Verify that widgets are named clearly for easy identification
5959

60-
3. **Build Fails Without Error Messages**
60+
- **Build Fails Without Error Messages**
6161

6262
- **Issue**: The build process fails without displaying an error message, making it challenging to diagnose the problem.
6363

6464
- **Solution**: Download and run the project code locally with a debugger to identify and resolve the issue. If downloading the code is problematic, check your browser's console for errors that might indicate the cause.
6565

6666
![](../assets/20250430121148811672.png)
6767

68-
4. **Grey Screen in Run Mode**
68+
- **Grey Screen in Run Mode**
6969

7070
- **Issue**: Encountering a grey screen in run mode usually indicates an error suppressed by the release mode.
7171

7272
- **Solution**: Run the app in test mode to potentially reveal the error for troubleshooting. If test mode does not display errors, use the browser's developer console for clues.
7373

7474
## Checklist for Troubleshooting
7575

76-
1. **Identify when and where the error occurs**:
76+
- **Identify when and where the error occurs**:
7777

7878
Determine if the error is specific to run mode, test mode, or other instances like APK download or code download.
7979

80-
2. **Locate the source of the error**:
80+
- **Locate the source of the error**:
8181

8282
The error message often provides clues about where the problem lies, whether in custom code, a specific widget, or elsewhere.
8383

84-
3. **Check for platform support**:
84+
- **Check for platform support**:
8585

8686
For issues related to custom code, ensure compatibility with your target platforms.
8787

88-
4. **Examine widget configuration**:
88+
- **Examine widget configuration**:
8989

9090
Verify that all actions and configurations associated with widgets are complete and correct.
9191

92-
5. **Utilize local debugging**:
92+
- **Utilize local debugging**:
9393

9494
If the error is elusive, running the debugger locally on your downloaded code can help identify the issue.
9595

96-
6. **Leverage browser tools**:
96+
- **Leverage browser tools**:
9797

9898
The browser's console and developer tools can offer insights, especially when dealing with errors that don't manifest in traditional debug outputs.
9999

0 commit comments

Comments
 (0)