Is there 2 AndroidManifest.xml files in my Eclipse Developer Android app that I have to edit?

I am using the Eclipse Developer Android application, and with each new Android project there are two AndroidManifest.xml files.

The first is at projectName/bin/AndroidManifest.xml

The second is located at projectName/AndroidManifest.xml

Should I make the same changes to both AndroidManifest files?

Or do I need to make changes to projectName/AndroidManifest.xml (second choice)?

+4
source share
4 answers

projectName/AndroidManifest.xml ; you only need to modify this file.

The projectName/bin/AndroidManifest.xml file is automatically generated, so you do not need to change it.

+4
source

Make Project> Clean in Eclipse and it should disappear.

+3
source

Just leave AndroidManifest located in the bin folder.

Just change your AndroidManifest, located outside of your second choice. Projectname / AndroidManifest.xml

+1
source

Always use the AndroidManifest.xml file, which is located in the root folder.

"Projectname / AndroidManifest.xml"

0
source

All Articles