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 ?
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 ?
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"
...