Manifest File
AndroidManifest.xml defines the Android application project. It defines the attributes, activities, versions, permissions, and other parameters of the application.'src' folder
As any Java project, this folder holds all the Java sources and packages.'res' folder
Holds any local resources of the application.- 'drawable' - image folders according to resolutions. By default, there are 3 folders for 3 basic resolutions.
- 'layout' - XML file which represents display layout. By default, a main.xml is created.
- 'values' - XML file which defines global constants, strings, styles or colors.
*Note: Files in the res folder may be modified for optimization purposes.
Comments
Post a Comment