Flutter Firebase Android 应用程序无法启动

问题描述 投票:0回答:1

我有一个奇怪的问题,应用程序在 Chrome 上启动。但在 Android 设备堆栈上并显示“在调试模式下在 sdk gphone64 x86 64 上启动 lib\main.dart...”

我几乎阅读了 stack over flow 上的所有问题,但找不到任何解决方案。 擦除模拟器缓存 重新创建build.gradle等

这是我的 Main.dart

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await Firebase.initializeApp(options: DefaultFirebaseOptions.currentPlatform);
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: const HomeScreen(),
      theme: lightMode,
    );
  }
}

enter image description here

android flutter firebase dart firebase-authentication
1个回答
0
投票

确保您已从 firebase 项目下载

google-services.json
文件, 等待下载所有gradle

© www.soinside.com 2019 - 2024. All rights reserved.