4.Create Your First Android APP Let's create our first application for Android. You can use the Android Studio and the ADT to Develop the android application. Before that, you have basic knowledge of CORE JAVA and XML and DBMS. In Android, we use the SQLite for DataBase Management. Don't be panic if you are not strong in these languages which are written above it will be fine if you try and learn these intentionally. NOTE: The Concept is same for both Android Studio and the Eclipse ADT, But Now Android Studio Blocked provide the External SDK and the add-on for Eclipse ADT. if you have the previous Version of the ADT then it's ok. Open Android Studio. Under the "Quick Start" menu, select "Start a new Android Studio project." On the "Create New Project" window that opens, name your project "HelloWorld". If you choose to, set the company name as desired*. Note where the project file location is and change it if desire
3.File Present Inside The APPlLICATION Package AndroidManifest.xml Every application must have an AndroidManifest.xml file (with precisely that name) in its root directory. The manifest file provides essential information about your app to the Android system, which the system must have before it can run any of the app's code. Among other things, the manifest file does the following: It names the Java package for the application. The package name serves as a unique identifier for the application. It describes the components of the application, which include the activities, services, broadcast receivers, and content providers that compose the application. It also names the classes that implement each of the components and publishes their capabilities, such as the Intent messages that they can handle. These declarations inform the Android system of the components and the conditions in which they can be launched. It determines the processes that host the applicati