Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: What is the bin/res/crunch folder used for?

While modifying a white label app, I needed to change a logo and found it was located in 2 locations (duplicated):

  • res/drawable and similar folders (for other screen depths)
  • bin/res/crunch/drawable and similar folders (for other screen depths)

So I would like to know if I should care about the second folder, or if it's something generated by Eclipse/ADT.

like image 311
Nabil Kadimi Avatar asked Feb 10 '14 19:02

Nabil Kadimi


2 Answers

They are automatically generated on build. You can ignore them.

like image 77
Phantômaxx Avatar answered Nov 12 '22 01:11

Phantômaxx


The crunch is used to export the app by eclipse and I've experienced a problem that a drawable was not updated in a crunch. If you want to be really sure that you deliver what you see, just clean the res/crunch/drawable before exporting.

like image 37
Filip Stachowiak Avatar answered Nov 12 '22 00:11

Filip Stachowiak