AndroidManifest.xml
This file describes the fundamental characteristics of the app and defines each of its components.
Java - This contains the .java source
files for project. By default, it includes an MainActivity.java source
file having an activity class that runs when your app is launched.
res/layout
This is a directory for
files that define user interface.
res/values
This is a directory for
other XML files that contain a collection of resources (Strings
and colours definitions etc)
res/drawable-hdpi
This is a directory for
drawable objects.
Build.gradle
This is an auto generated
file which contains compile SDK Version, build Tools Version, application ID,
min SDK Version, target SDK Version, version Code and version Name
This is a directory for files that define user interface.
This is a directory for other XML files that contain a collection of resources (Strings and colours definitions etc)
This is a directory for drawable objects.
Post a Comment