is there any solution for this android embedding v2?

Viewed 24

The plugin firebase core requires your app to be migrated to the Android embedding v2. what's the solution for this one? Anyone have idea ?

1 Answers

if you are using flutter 2.10:

Change this:

<application
    android:icon="@mipmap/ic_launcher"
    android:name="io.flutter.app.FlutterApplication"
    android:label="stack_overflow_issues_solution" 

To This:

<application
    android:icon="@mipmap/ic_launcher"
    android:name="${applicationName}"
    android:label="stack_overflow_issues_solution"
    ...
Related