flutterfirebasefirebase-authenticationflutter-testflutter-objectbox

FirebaseAppPlatform.verifyExtends error while running flutter test


When I run my bitbucket pipeline for my project im getting an error during flutter test:

/root/.pub-cache/hosted/pub.dartlang.org/firebase_core-1.24.0/lib/src/firebase_app.dart:18:25: Error: Member not found: 'FirebaseAppPlatform.verifyExtends'.
    FirebaseAppPlatform.verifyExtends(_delegate);
                        ^^^^^^^^^^^^^

When I run flutter test in my terminal I don't have these issues.

My pipeline script is:


Solution

  • Because there are some breaking change of firebase_core_platform_interface that do not comply with semantic versioning: https://github.com/firebase/flutterfire/issues/9806

    You need to overwrite this library:

    enter image description here