Analysing Assets.car file in iOS

IosIphoneIos7Ios6

Ios Problem Overview


I have trying to reduce the overall size of my iOS application which is currently 48MB. When I analyze sub folders, I found Assets.car is taking 41MB. I am not able to open and see which one is taking that much space.

I couldn't find any good documentation regarding Assets.car file. Can someone suggest how to view the contents?

Ios Solutions


Solution 1 - Ios

This tool can extract a .car archive: https://github.com/steventroughtonsmith/cartool

Steps to extract archive:

Once you've downloaded the zip from github, compile it in Xcode to generate the command line tool. Then expand the Products group and right click on the cartool file and locate it in finder. You can then run the tool like so:

  • open terminal
  • cd /path/to/cartool
  • ./cartool /path/to/Assets.car /path/to/outputDirectory

Solution 2 - Ios

Run Apple’s assetutil:

xcrun --sdk iphoneos assetutil --info Assets.car

you’ll get a JSON description of each item in the file. Something like this:

  {
    "Height" : 60,
    "Scale" : 1,
    "RenditionName" : "D3801CE9-19F1-4CE9-97C6-7E1EFFFCAE89",
    "AssetType" : "Vector",
    "SizeOnDisk" : 10822,
    "Name" : "mailbox",
    "Idiom" : "universal",
    "Width" : 99
  },

Note the line "SizeOnDisk" : 10822.

This tool performs limited .car manipulation, run man assetutil for details.


The Assets.car seems to be a proprietary Apple’s archive that first appeared in iOS 7. A few utilities are able to extract its contents using the private class CUICatalog of the CoreUI framework:

There is also an app that reads .car files: crunch 9$, 15 day trial

Running strings Assets.car returned

@(#)PROGRAM:CoreUI  PROJECT:CoreUI-475.1.1
IBCocoaTouchImageCatalogTool-9.0

Running find inside Xcode-beta returned /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Xcode/Overlays/IBCocoaTouchImageCatalogTool, which is a simulator executable (i386 + x86_64). Didn’t investigate any further but I bet that this tool could open .car archives if you run it inside the simulator.

Solution 3 - Ios

If you want to browse and extract asset catalogs, you can also use my app Asset Catalog Tinkerer

Asset Catalog Tinkerer screenshot

Solution 4 - Ios

Open Assets.car

[Assets.car file]

You can try an online tool(Assets.car Asset Extractor Online), or a QLCARFiles QuickLook plugin for Mac

and to double check it use assetutil tool

xcrun --sdk iphoneos assetutil --info <path_to_Assets.car>

Solution 5 - Ios

Guilherme Rambo said is correct, not the Lewis42.

Suppose a pdf file('a.pdf') in Asserts.car.

You will get three png files(a.png/[email protected]/[email protected]) if using cartool, file format had been changed.

But, if you using AssetCatalogTinkerer, you can preview the a.pdf file(no file format changed).

Solution 6 - Ios

Universal-binaries seem to contain multiple image resolutions for each screen-density.

Once the app is uploaded to the App Store the file-size will be less than your universal-binary, because each device will only get appropriate image densities.

You can check file-sizes here: iTunes Connect > My Apps > Your App > Activity > Your Build > App Store file-size

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRajeevView Question on Stackoverflow
Solution 1 - IoslewisView Answer on Stackoverflow
Solution 2 - IosJanoView Answer on Stackoverflow
Solution 3 - IosGuilherme RamboView Answer on Stackoverflow
Solution 4 - IosyoAlex5View Answer on Stackoverflow
Solution 5 - IosJ.CasparView Answer on Stackoverflow
Solution 6 - IosRhodanV5500View Answer on Stackoverflow