Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to solve Runtime error in Android bin res crunch directory?

I am using eclipse(3.7.1) for android development. When i try to run the application it showing error in bin-->res-->crunch directory

Please any one help me to resolve this error

like image 791
Krishna Avatar asked Feb 14 '23 05:02

Krishna


2 Answers

Try this, you must remove this folder in your Workspace and re-build your project:

  • Go to /YourAndroidWorkspace/YourProject/bin and remove the "crunch" folder.

  • Clear and re-build your project in Eclipse.

It´s work for me.

like image 63
Joe Avatar answered May 08 '23 22:05

Joe


When building using the command line, Eclipse and ant could interfere. (Especially if you use "build automatically")

For me it worked to close eclipse and run:

ant clean debug
like image 35
Jeroen Mols Avatar answered May 08 '23 22:05

Jeroen Mols