skip to Main Content

I’m a beginner in Flutter, I want to use firebase in my flutter app, I run my app on chrome because the emulator does not work, I have configured the build.gradle file, and the pubspec.yaml, when I run my app I have an error saying:

/C:/flutter/.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);
                        ^^^^^^^^^^^^^
Waiting for connection from debug service on Chrome...            154.8s
Failed to compile application.

2

Answers


  1. Try this

    flutter pub upgrade --major-versions

    Login or Signup to reply.
  2. for now use this versions:

      firebase_analytics:
      firebase_auth: 
      firebase_core: ^1.24.0
      cloud_firestore: 
      cloud_functions: 
      firebase_core_platform_interface: 4.5.1
    
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search