ra1nmaster
ra1nmaster

Reputation: 702

What is Assets.car file in .app?

I was looking at the contents of my application and I found the file Assets.car in the resources folder of my application along with some nibs:

Assets.car file

My question is: What is this file and what does it have to do with the application? What kind of data does it contain?

Upvotes: 10

Views: 13975

Answers (2)

yoAlex5
yoAlex5

Reputation: 34255

Assets.car file

When you build a project all your non empty assets .xcassets which are added to Build Phases -> Copy Bundle Resources will be compiled into Assets.car file, which is generated by Xcode during building and set up by Build Settings -> Asset Catalog Compiler

[Open Assets.car]

Upvotes: 0

matt
matt

Reputation: 535316

It is the "compiled" version of the assets catalog.

Upvotes: 18

Related Questions