Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 15 beta error in GeneratedAssetSymbols

I am trying the new Xcode 15 and got some compile errors on the GeneratedAssetSymbols at ColorResource and ImageResource structs.

The errors are Type 'ColorResource' does not conform to protocol 'Equatable' and Type 'ColorResource' does not conform to protocol 'Hashable'.

Someone knows what is wrong?

Thanks in advance

like image 718
Naka Avatar asked Aug 26 '26 11:08

Naka


1 Answers

Oh, I figure it out. It is because I have a class with the name Bundle. It is somehow conflicting with the Bundle used in GeneratedAssetSymbols. So, I have to rename my class to get it worked.

Posting here for helpless souls with the same problem.

like image 147
Naka Avatar answered Aug 28 '26 01:08

Naka