Known Issues
Backup and Restore Issue
Summary:
When an administrator performs a backup of an environment, installs a new version of Maptaskr Power Maps, and then restores the environment to an older version, a known Microsoft issue may occur.
What happens:
After restoring to an older version, unmanaged solutions may not update correctly. This can cause the bundle files for Power Apps Component Framework (PCF) controls to become mismatched, resulting in errors or missing functionality in Maptaskr Power Maps.
Who is affected:
This issue affects administrators managing solution versions in environments where both backup/restore and solution upgrades are performed.
How to resolve:
- In the restored environment, locate all PCF controls within all unmanaged solutions.
- Select each control and click Publish to ensure the correct bundle files are applied.
Tip: Always test your environment after a restore and solution upgrade to confirm all controls are working as expected.

If you encounter an unexpected issue, please contact our support team via the Contacting Support page. Include: environment name, solution version, steps to reproduce, expected vs actual result, relevant screenshots (or screen recording), and any browser console/network errors. This detail lets us diagnose and resolve problems faster. ::
Troubleshoot WebView reset in Dynamics 365 Field Service mobile app
This article helps you troubleshoot and resolve issues in the Dynamics 365 Field Service mobile app, where the home page is unexpectedly displayed, and a WebView reset occurs.
What is a WebView reset?
A WebView reset in the Dynamics 365 Field Service mobile app typically indicates that the app module consumes too much memory. It's often triggered by activities that cause memory pressure on the WebView process. Model-driven applications in Power Apps, such as Dynamics 365 Field Service, run as web applications inside a WebView on the mobile client. As a result, they're subject to the memory management policies of the mobile operating system.
Root cause
A WebView reset occurs when the mobile operating system terminates an application process that exceeds its memory limits. The threshold for "too much memory" varies by device and operating system, so the issue might not always be reproducible.
- iOS: The WebView reset error occurs only on iOS because WebViews run in separate processes that can be terminated independently from the main app. If the WebView process exceeds the operating system memory threshold, it's terminated. The app detects this issue, restarts the WebView, and displays a reset message to the user.
- Android: The WebView runs within the main application process. If memory limits are exceeded, the entire app process is terminated, resulting in a crash.
- Desktop browsers: WebView resets don't occur, but memory pressure can still be investigated using browser tools.
Poor memory management in customizations can negatively impact the app experience.
Understanding memory pressure
There are two main causes of memory pressure:
-
Memory spike
A memory spike occurs when a large object is allocated in the WebView process, causing a sudden increase in memory usage. Common causes include:
- Storing Base64-encoded images or videos in variables within Power Apps component framework controls or web resources.
- Using JavaScript libraries that import large resource files (for example, font libraries.)
If you can reliably reproduce a WebView reset by performing a specific action (like opening a form or control), a memory spike is likely the cause.
-
Memory leaks
A memory leak occurs when memory allocated within the WebView process isn't released because of lingering references, such as event listeners or objects that aren't properly cleaned up. This issue prevents the garbage collector from reclaiming the memory, causing memory usage to gradually increase over time. For example, adding event listeners to the window object in JavaScript without removing them when navigating away can lead to leaks. If WebView resets occur randomly and aren't tied to a specific action, it's likely due to a memory leak from previous activities.
Troubleshooting memory pressure
To diagnose and resolve memory pressure issues:
- For iOS, use Safari memory analysis tools to check the memory performance of your iOS app module. For more information, see the Timelines Tab in Web Inspector.
- The WebView reset error is specific to iOS applications running WebViews and can only be reproduced within that context. However, code that causes memory pressure on mobile also causes memory pressure buildup on desktop browsers. You can investigate the root cause of a WebView reset by using browser developer tools (such as Microsoft Edge DevTools) to track memory usage and identify issues.