We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
flutter.gradle
1 parent 1ebe53c commit 70c1f26Copy full SHA for 70c1f26
packages/flutter_tools/gradle/flutter.gradle
@@ -244,7 +244,7 @@ class FlutterPlugin implements Plugin<Project> {
244
project.android {
245
defaultConfig {
246
multiDexEnabled true
247
- manifestPlaceholders = [applicationName: "io.flutter.app.FlutterMultiDexApplication"]
+ manifestPlaceholders.applicationName = "io.flutter.app.FlutterMultiDexApplication"
248
}
249
buildTypes {
250
release {
@@ -263,7 +263,7 @@ class FlutterPlugin implements Plugin<Project> {
263
264
265
// Setting to android.app.Application is the same as omitting the attribute.
266
- manifestPlaceholders = [applicationName: baseApplicationName]
+ manifestPlaceholders.applicationName = baseApplicationName
267
268
269
0 commit comments