Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

There are 2 AndroidManifest.xml files in my Android Eclipse Developer app, which one should I edit?

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

The first is located at projectName/bin/AndroidManifest.xml

The second is located at projectName/AndroidManifest.xml

Should I make the same changes to both AndroidManifest files?

Or should I only make changes to the projectName/AndroidManifest.xml (second choice)?

like image 883
Ryan D'souza Avatar asked Feb 17 '23 17:02

Ryan D'souza


1 Answers

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

The projectName/bin/AndroidManifest.xml file is automatically generated, so you don't need to modify it.

like image 93
段延锐 Avatar answered Apr 06 '23 11:04

段延锐