Complete the code to define the app version in the build.gradle file.
android {
defaultConfig {
versionCode [1]
}
}The versionCode must be an integer without quotes to specify the app version number.
Complete the code to sign the APK with the release key in build.gradle.
signingConfigs {
release {
storeFile file("[1]")
}
}The storeFile should point to your release keystore file, commonly named my-release-key.keystore.
Fix the error in the AndroidManifest.xml to set the app's package name.
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="[1]"> </manifest>
The package name must be a full domain-style identifier like com.example.myapp.
Fill both blanks to define the release build type with signing config.
buildTypes {
release {
minifyEnabled [1]
signingConfig [2]
}
}For release builds, minifyEnabled is often set to false initially, and signingConfig must point to the release signing config.
Fill all three blanks to create a Play Store listing with title, short description, and full description.
playStoreListing {
title = "[1]"
shortDescription = "[2]"
fullDescription = "[3]"
}The title is the app name, the short description is a brief summary, and the full description explains the app in detail for the Play Store listing.