Complete the code to specify the Android app module directory name in the project.
rootProject.name = "MyApplication" include(":[1]")
The main Android app module is usually named app. This is where your app code and resources live.
Complete the Gradle build script line to apply the Android application plugin.
plugins {
id("[1]")
}The plugin com.android.application is used to build Android apps.
Fix the error in the AndroidManifest.xml root tag to declare the correct XML namespace.
<manifest xmlns:android="[1]" package="com.example.app"> </manifest>
The AndroidManifest.xml must declare the xmlns:android namespace as http://schemas.android.com/apk/res/android.
Fill both blanks to declare the minimum SDK version and target SDK version in build.gradle.kts.
android {
defaultConfig {
minSdk = [1]
targetSdk = [2]
}
}The minSdk sets the minimum Android version supported, and targetSdk sets the version the app targets.
Fill all three blanks to define the application ID, version code, and version name in build.gradle.kts.
android {
defaultConfig {
applicationId = "[1]"
versionCode = [2]
versionName = "[3]"
}
}The applicationId uniquely identifies your app. versionCode is an integer for updates, and versionName is a user-friendly version string.