Android Eclipse Project Structure

by 07:05:00 0 comments

Root
  • AndroidMainfest.xml - describes the application being built and what components are being supplied by that application.
  • bin/ - holds the appplication once compiled
  • libs/ - holds any third-party JARs your application requires
  • res/ - holds resources, such as picture, layouts.
  • drawable/ - holds picture or drawable xml.
  •  layout/ - holds GUI layout xml.
  •  value/ - holds key pairs that will reference in application.
  • src/ - holds java code for the application.
  • assets/ - holds other static files that you want packaged with the application.
  • gen/ - The directory in which Android's build tools place source code that they generate.
  • R.java
  • build.xml and *.properties - used as part of the Ant-Based command-line build process
  • proguard.cfg - A file that is used for integration with ProGuard to obfuscate your Android code ( 就是防止反編譯 )

0 comments:

Post a Comment