Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Run IOS error "failed to read asset tags" xcode 10.13

Tags:

ios

build

Currently I open a project for IOS, but in the process of opening the project, there is an error.

I hope someone will help. Thank you . . . !

This is an image of the error when running:

Error Screenshot

like image 485
HunTerX Avatar asked Jan 08 '19 08:01

HunTerX


4 Answers

I had this on a CI build of Mac OS where I hadn't opened Xcode before.

After opening XCode I received the pictured prompt stating: "Install additional required components?"

After clicking install and running the build again the error went away.

On to the next one :P

Xcode prompt requesting to install additional components

like image 166
Tom Benyon Avatar answered Nov 12 '22 07:11

Tom Benyon


There is a similar issue that occurred in Xcode 9. Try to remove the reference of Images.xcassets and adding it again.

You can do this by going to the file and deleting it. Then you will be prompted to either delete it or remove the reference.

like image 28
tomerpacific Avatar answered Nov 12 '22 07:11

tomerpacific


Set Xcode / File / Workspace Settings / Build system / select "Legacy Build System" and this error went away.

like image 43
theDuncs Avatar answered Nov 12 '22 06:11

theDuncs


I got a similar error in a Cordova project. I had to:

cordova platform remove ios
cordova platform add ios
like image 28
Post Impatica Avatar answered Nov 12 '22 08:11

Post Impatica