Razor Storm
Razor Storm

Reputation: 12336

AndroidManifiest.xml FileNotFoundException?

I am trying to test my project on my phone, but when I run with eclipse it runs into a fileNotFoundException on the AndroidManifest.xml file.

I looked in my project and the file is clearly there:

/Project
    assets/
        ...
    bin/
        ...
    gen/
        ...
    res/
        ...
    src/
        com/
            ...
    .classpath
    .project
    AndroidManifest.xml
    default.properties

Upvotes: 0

Views: 99

Answers (1)

cgull
cgull

Reputation: 1417

To make it official: In Eclipse, do a File -> Refresh followed by a Project -> Clean to rebuild the project. I find the most common need to do this is when the gen/R.java file isn't being updated for some reason.

Upvotes: 1

Related Questions