Get Started with Flutter Authentication

I found an issue where android was giving me the following error after adding manifestPlaceholders

Attribute application@name at AndroidManifest.xml:4:9-42 requires a placeholder substitution but no value for <applicationName> is provided.

The solution for this is

using += instead of just =.

       manifestPlaceholders += [
            auth0Domain: "dev-hi4wj8ayswlwbsl5.us.auth0.com",
            auth0Scheme: "auth0app",
        ]

Flutter version

Flutter 3.10.6 • channel stable • ssh://git@github.com/flutter/flutter.git
Framework • revision f468f3366c (3 days ago) • 2023-07-12 15:19:05 -0700
Engine • revision cdbeda788a
Tools • Dart 3.0.6 • DevTools 2.23.1
1 Like