diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 21c0372adf0cf..360e38e5b654f 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -280,3 +280,28 @@ $ ./run_tests.py --variant=host_debug_unopt_arm64 --type=engine
Googlers contributing to Fuchsia should follow the additional steps at:
go/flutter-fuchsia-pr-policy.
+
+
+
The Flutter engine is a critical component of the Flutter framework, responsible for rendering graphics, handling input, and managing the app's lifecycle. Occasionally, developers may encounter issues related to the engine. Here are some common problems and their potential solutions:
+
+**1. Performance Issues:**
+- **Shader Compilation Jank:** Flutter apps might experience stuttering due to runtime shader compilation. To address this, Flutter introduced the Impeller rendering engine, which precompiles shaders to ensure smoother performance. Impeller is enabled by default on iOS and is available for testing on other platforms.
+
+**2. Memory Management:**
+- **High Memory Usage with Multiple Engines:** When integrating multiple Flutter instances in an app, developers have reported increased memory consumption. The Flutter team has been working on lightweight engine solutions to mitigate this issue. It's advisable to monitor the project's progress for updates.
+
+**3. Platform-Specific Errors:**
+- **macOS Initialization Failure:** Some developers have encountered errors like "Failed to initialize Flutter engine: error 2" on macOS. This can result from incorrect asset paths or missing configurations. Ensuring that the `flutter_assets` directory is correctly referenced in the project settings can resolve this issue.
+
+**4. Deprecated APIs:**
+- **Outdated Code:** As Flutter evolves, certain APIs become deprecated. Using the `flutter fix` tool helps identify and update deprecated code, ensuring compatibility with the latest Flutter versions.
+
+**5. Known Bugs and Issues:**
+- **GitHub Issue Tracker:** The Flutter community actively reports and tracks issues on GitHub. Regularly checking the [Flutter GitHub Issues](https://github.com/flutter/flutter/issues) page can provide insights into current problems and their resolutions.
+
+**Best Practices:**
+- **Stay Updated:** Regularly update your Flutter SDK to benefit from the latest fixes and improvements.
+- **Consult Release Notes:** Reviewing the [Flutter release notes](https://docs.flutter.dev/release/release-notes) offers information on new features and known issues.
+- **Engage with the Community:** Participating in Flutter forums and discussions can provide solutions and workarounds from fellow developers.
+
+By staying informed and proactive, you can effectively address and mitigate issues related to the Flutter engine.