Making Your First App : Hello World 1. Welcome to Android Studio Screen First, open Android Studio. You should see this window. Go ahead and click Start a new Android Studio Project. An Android Studio Project typically means the code and files for one Android Application. Start a new Android Studio Project 2. New Project Screen Here we see a few options we get to choose. App Name Application Name is the name of the application we'll see in the App Bar at the top of our app, as well as shown in the All Apps screen on the device. Using the default is fine (examples were made with a happy birthday app, but for our purposes the naming doesn't matter). Company Domain Next is company domain. Since we're practicing together right now, use the domain android.example.com, which should be what is automatically shown. If you look below, you'll see that it generates the package name com.example.android.myapplication, which is combination of the reverse of the domain and yo...