Solving Xcode Build Error in Flutter (nanopb): Installing Multiple Versions of Xcode

I ran into an error in my Flutter project after updating to Xcode 14.3 from 13.x. Specifically, the error was related to 'nanopb' from the 'Pods': ... DVTCoreDeviceEnabledState_Disabled set via user default (DVTEnableCoreDevice=disabled) ... [ ] ** BUILD FAILED ** [ ] The following build commands failed: [ ] Ld /Users/user/project/build/macos/Build/Products/Debug/nanopb/nanopb.framework/Versions/A/nanopb normal (in target 'nanopb' from project 'Pods') [ ] (1 failure) [+6803 ms] Exception: Build process failed Exited (sigterm) [ +5 ms] #0 throwToolExit (package:flutter_tools/src/base/common....

April 25, 2023 · 2 min · 366 words · Altynbek Usenbekov

How to Enable Impeller in Flutter

Impeller is a new rendering runtime for Flutter. It precompiles a smaller, simpler set of shaders at Engine build time so that they won’t be compiled while an app is running. It takes full advantage of modern hardware-accelerated graphics APIs such as Metal on iOS and Vulkan on Android. Running with Impeller You can run with Impeller by passing --enable-impeller to the flutter run command like this: flutter run --enable-impeller Enabling Impeller in Flutter Impeller is currently available for preview on iOS on the master channel....

April 13, 2023 · 1 min · 160 words · Altynbek Usenbekov