How do I handle error: couldn't find Assets.car in bundle with identifier:... ARKit, assets problem

Viewed 8

XCode13.4.1, I got the following error, but I have no asset called car.

UserInfo={NSLocalizedDescription=RunTimeThemeRefForBundleIdentifierAndName() couldn't find Assets.car in bundle with identifier:

1 Answers

It took me quite a lot of googling to comeuppance with a solution.

I solved my problem by adding the Assets.xcassets to the build phase of the target. enter image description here

Related