Recall & Review
beginner
What is the first step to create a new Android project in Android Studio?
Open Android Studio and select "New Project" from the welcome screen or the File menu.
Click to reveal answer
beginner
Which file defines the app's name, icon, and theme during project creation?
The AndroidManifest.xml file defines app details like the app name and icon, while the app-level build.gradle file manages dependencies and build configurations. The project wizard lets you set the app name and icon initially.
Click to reveal answer
beginner
What is the purpose of choosing a "Project Template" when creating a new Android project?
A project template provides a starting point with pre-built code and UI components, like a basic activity or empty activity, to help you begin faster.
Click to reveal answer
beginner
Why do you need to select a "Minimum SDK" when creating a new Android project?
The Minimum SDK sets the oldest Android version your app supports, ensuring it runs on devices with that version or newer.
Click to reveal answer
beginner
What files are automatically created when you start a new Android project with an Empty Activity template?
Android Studio creates MainActivity.kt, activity_main.xml layout, AndroidManifest.xml, and Gradle build files to get you started.
Click to reveal answer
What do you click first to start a new Android project in Android Studio?
✗ Incorrect
You start by clicking "New Project" to create a fresh Android app.
Which template is best for starting with a blank screen?
✗ Incorrect
Empty Activity gives you a blank screen to build your app from scratch.
What does the Minimum SDK setting control?
✗ Incorrect
Minimum SDK defines the oldest Android version that can run your app.
Which file contains the main UI layout for your activity?
✗ Incorrect
activity_main.xml holds the UI design for the main screen.
What language is used by default for new Android projects in Android Studio?
✗ Incorrect
Kotlin is the recommended and default language for Android development.
Describe the steps to create a new Android project in Android Studio.
Think about what you see on the Android Studio welcome screen.
You got /6 concepts.
Explain why choosing the Minimum SDK is important when creating a new Android project.
Consider device versions and app features.
You got /4 concepts.