0
0
Android Kotlinmobile~5 mins

Creating a new Android project in Android Kotlin - Quick Revision & Summary

Choose your learning style9 modes available
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?
A"Import Project"
B"Open Existing Project"
C"New Project"
D"Settings"
Which template is best for starting with a blank screen?
AEmpty Activity
BBasic Activity
CFullscreen Activity
DNavigation Drawer Activity
What does the Minimum SDK setting control?
AThe oldest Android version your app supports
BThe maximum Android version your app supports
CThe Android version used to build the app
DThe Android version for testing only
Which file contains the main UI layout for your activity?
AMainActivity.kt
Bactivity_main.xml
CAndroidManifest.xml
Dbuild.gradle
What language is used by default for new Android projects in Android Studio?
ASwift
BJava
CC++
DKotlin
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.