gpt4 book ai didi

xcode - 重复的插件 key : FLTGoogleMapsPlugin

转载 作者:行者123 更新时间:2023-12-03 02:51:01 27 4
gpt4 key购买 nike

我正在尝试使用带有 Flutter 的 Google map 准备一个演示项目,但不知道为什么在控制台中因此错误而崩溃

Runner[39966:208120] *** Terminating app due to uncaught exception
'NSInternalInconsistencyException', reason: 'Duplicate plugin key:
FLTGoogleMapsPlugin'


我已经按照这个链接
flutter-io

提前感谢任何帮助。

最佳答案

只是为了澄清评论并提供最终答案 - 您应该小心 [GeneratedPluginRegistrant registerWithRegistry:self]在您的 AppDelegate.m 文件中不会被调用两次。

根据 the Google Maps Flutter plugin readme ,您的 AppDelegate.m 应如下所示:

#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

关于xcode - 重复的插件 key : FLTGoogleMapsPlugin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55950241/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com