Answers for "${applicationName} flutter"

0

${applicationName} flutter

In android/app/build.gradle:

android {
    ⋮
    defaultConfig {
        applicationId "com.example.my_app"
        minSdkVersion flutter.minSdkVersion
        targetSdkVersion flutter.targetSdkVersion
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        // This right here!
        manifestPlaceholders = [applicationName: "android.app.Application"]
    }
    ⋮
}
Posted by: Guest on February-12-2022

Code answers related to "${applicationName} flutter"

Browse Popular Code Answers by Language