我試圖在我的iSO應用中添加Google Analytics,並且使用Google Analytics最新的SDK https://developers.google.com/analytics/devguides/collection/ios/v3/。
成功將所有必需的標題和框架添加到我的項目中。但是,當運行我的應用我收到以下錯誤
(空): 「_OBJC_CLASS _ $ _ GGLContext」,從引用:objc級,裁判在AppDelegate.o
(空):連接器命令退出碼1失敗(使用-v看到調用)
下面是代碼,我writtig在AppDelegate.m文件
// Configure tracker from GoogleService-Info.plist.
NSError *configureError;
[[GGLContext sharedInstance] configureWithError:&configureError];
NSAssert(!configureError, @"Error configuring Google services: %@", configureError);
// Optional: configure GAI options.
GAI *gai = [GAI sharedInstance];
gai.trackUncaughtExceptions = YES; // report uncaught exceptions
gai.logger.logLevel = kGAILogLevelVerbose; // remove before app release
還包括(_OBJC_CLASS _ $ _ GIDSignInButton和_OBJC_CLASS _ $ _ GIDSignIn) 請告訴我缺少什麼。提前致謝。
您是否找到任何解決方案?我也有同樣的問題。 – nfarshchi
還沒有。我在下面的答案嘗試,但沒有任何工作爲我。 – Arti
解決了此問題。看到我的答案。此外,我已添加libGGLCore.a鏈接二進制文件庫 – Arti