简体   繁体   中英

How can it be two AndroidManifest.xml files on a single android project

I learned that in every project we have only 1 AndroidManifest.xml file. BUT I found two of the same file name !! One is in the root folder, and the other is in the /bin folder...

How come, and what shell I do ?

thx !

project/bin folder is for compiled (to bytecode) source code and project resources.

Do not worry about it, your IDE is handling content of bin folder automaticly. When all code is compilled, your IDE (I think, it is Eclipse) can build your project.

When your project builds, it creates a copy of itself for execution in the bin folder.

You can ignore everything in the bin folder as its automatically generated and it doesn't require any edit directly of you .

The only AndroidManifest.xml you have to worry about is the one in your root project directory

One is created by the developer (the one in root folder) and the other one (the one in /bin) is created by eclipse or whatever IDE you are using.

The other one is a compiled binary. This is totally fine. You don't have to do anything. Continue developing!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM