Flutter firebase 分析应用程序在启动时崩溃

Flutter firebase analytics app crashes on startup

我给自己买了一台 MacBook,但在模拟器上构建 iOS 应用程序时遇到错误。我可以毫无问题地构建应用程序的 android 版本。我附上了 flutter doctor 和 VSCode 调试控制台的输出。如果需要一些其他输出,请随时告诉我我应该上传什么来帮助你。

谢谢

解决方案:

在 AppDelegate.m 文件中确保 [GeneratedPluginRegistrant registerWithRegistry:self]; 只出现一次,如下所示

    #include "AppDelegate.h"
#include "GeneratedPluginRegistrant.h"
#import "GoogleMaps/GoogleMaps.h"

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application
    didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
      [GMSServices provideAPIKey:@"YOUR KEY HERE"];
      [GeneratedPluginRegistrant registerWithRegistry:self];
      return [super application:application didFinishLaunchingWithOptions:launchOptions];
}

@end