简体   繁体   中英

FlutterAppRequiredException: The current directory does not appear to be a Flutter application project

i have install firebase tools for implement it in flutter, i followed all the instruction but when i run "flutterfire configure" this error appears (FlutterAppRequiredException: The current directory does not appear to be a Flutter application project.)

You need to first redirect to your application path in CLI

cd app_name

Try again flutterfire configure command after that.

Thanks

You must make sure that in your pubspec.yaml the following lines are on the start of dependencies place, ex:

dependencies:
  flutter:
    sdk: flutter

Make sure your pubspec.yaml file is well defined and correct. In my case, I had erased after dependencies

  flutter:
    sdk: flutter
  ...

The correct format may be in flutter 3.3.0 Flutter and the pubspec file

name: myapp
version: 1.0.0+1
publish_to: none
description: A new Flutter project.
environment: 
  sdk: '>=2.18.0 <3.0.0'

dependencies: 
  cupertino_icons: 
 
  flutter:
    sdk: flutter

dev_dependencies:
  flutter_test:
    sdk: flutter

flutter:
  assets:
    - assets/
 
  uses-material-design: true

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM