Analyze the directory structure of the Android project in Eclipse. The main reference is blog: http://blog.csdn.net/zqixiao_09/article/details/50596038
The main catalogs are: src, bin, gen, res, etc.
1.SRC: The project's source code contains the Java source code files that are about to be created.
2.gen: Auto-generated file directory.
3.assets: Resource path.
4.bin: Compile the build directory. Binaries, including class, resource file, Dex, APK
5.res: Storage of resources files used in the application, including pictures, layout files, parameter description files, etc.
Drawable The first four folders are used to store the image resources; The layout folder is the application layouts file; Menu mainly uses the settings menu file; Values contains the XML file
The 6.androidmanifest.xml manifest file contains meta-information from Android apps and is an important file in every project. Android's four components (Activity, ContentProvider, Broadcastreceiver, service). Permissions.
7.project.properties: Configuration file for the project properties, configuring the compiled version
Eclipse Directory Structure Resolution