Skip to content

Commit 13b6a7c

Browse files
committed
improved formatting
1 parent 1738fa5 commit 13b6a7c

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"label": "Migrate"
2+
"label": "Test Mode"
33
}

docs/troubleshooting/migrate-issues/local_build_providerinstaller_error.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
keywords: ['build', 'android', 'emulator']
33
slug: /local-build-providerinstaller-error
4-
title: Local Build ProvuderInstaller Error
4+
title: Local Build ProviderInstaller Error
55
---
66

7-
# Local Build ProvuderInstaller Error
7+
# Local Build ProviderInstaller Error
88

99
This error commonly occurs when building Flutter apps on Android emulators. It is related to the `ProviderInstaller` service and can typically be resolved through basic cleanup and Flutter version upgrades.
1010

@@ -28,24 +28,31 @@ This error commonly occurs when building Flutter apps on Android emulators. It i
2828
Replace com.yourcompany.yourapp with your actual app ID.
2929

3030
2. **Rebuild the App**
31+
3132
After uninstalling:
3233

3334
Run the following command in your project directory:
3435

36+
```js
3537
flutter clean
3638
flutter pub get
3739
flutter run
40+
```
3841

3942

40-
This will remove cached data and reinstall the app on the emulator.
43+
This will remove cached data and reinstall the app on the emulator.
4144

4245
3. **Upgrade Flutter (If Problem Persists)**
4346

44-
If the issue continues, upgrading Flutter may help:
47+
If the issue continues, upgrading Flutter may help. Run the command below to upgrade:
48+
```js
4549
flutter upgrade
50+
```
4651

4752
Ensure your Flutter SDK is up to date. You can verify the version with:
4853

54+
```js
4955
flutter --version
50-
56+
```
57+
5158
This error is often related to Google Play Services not being properly initialized on the emulator. If you're still encountering issues, consider creating a new emulator using a system image that includes the Play Store.

docs/troubleshooting/migrate-issues/slow_test_mode_load.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ Projects with many pages, assets, or custom code can take longer to compile.
4343
:::
4444

4545
:::info[Additional Resources]
46-
If the issue persists after following the steps above, check the official support article:
47-
**[FlutterFlow: Test Mode Is Not Loading or Is Very Slow](https://intercom.help/flutterflow/en/articles/7052737-test-mode-is-not-loading-or-is-very-slow-it-takes-a-long-time-to-load-the-app)**
46+
If the issue persists after following the steps above, check the
47+
**[official support](https://intercom.help/flutterflow/en/articles/7052737-test-mode-is-not-loading-or-is-very-slow-it-takes-a-long-time-to-load-the-app)** article.
4848
:::
4949

5050
Following these steps should resolve most Test Mode performance issues and reduce load times for future previews.

0 commit comments

Comments
 (0)