You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running dart run flutter_launcher_icons to generate launcher icons for each of our flavors, the project.pbxproj file of iOS is frequently corrupted and the ASSETCATALOG_COMPILER_APPICON_NAME values for the different flavor targets are not set correctly.
This issue occurs due to asynchronous read and write operations on the project.pbxproj for each flavor that are not awaited correctly, leading to simultaneous execution. As a result, the file becomes incorrect and corrupted.
A pull request will be opened in the coming days to address this issue. Afterward, a decision can be made on whether to proceed with the fixed asynchronous approach or to use the synchronous approach suggested in PR #551.
The text was updated successfully, but these errors were encountered:
ℹ️ Info
Version:
0.14.1
and0.13.1
💬 Description
When running
dart run flutter_launcher_icons
to generate launcher icons for each of our flavors, theproject.pbxproj
file of iOS is frequently corrupted and theASSETCATALOG_COMPILER_APPICON_NAME
values for the different flavor targets are not set correctly.This issue occurs due to asynchronous read and write operations on the
project.pbxproj
for each flavor that are not awaited correctly, leading to simultaneous execution. As a result, the file becomes incorrect and corrupted.Related Issues:
#506
#550
#565
A pull request will be opened in the coming days to address this issue. Afterward, a decision can be made on whether to proceed with the fixed asynchronous approach or to use the synchronous approach suggested in PR #551.
The text was updated successfully, but these errors were encountered: