Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The application name can be specified in the "defaultConfig" section of the build.gradle file. Within this section, the "applicationId" property can be set to the desired name of the application. For example:

android {
    defaultConfig {
        applicationId "com.example.myapp"
        // Other configuration properties
    }
    // Other configurations
}