尝试在 Flutter 项目中添加 firebase_admob。
首先,我创建了 Firebase 项目,然后在该项目中创建了 2 个应用程序(Android 和 iOS)。
执行所有步骤(包括 google-services.json/GoogleService-Info.plist 和相应的源代码)
在 pubspec.yaml 中只有这些依赖项:
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^0.1.3
firebase_admob: ^0.10.0+2
然后使用此模块添加 admob 功能: https ://pub.dev/packages/firebase_admob/install
当我在 Android 上运行这个项目时,一切都很好。显示测试广告横幅。
然后尝试在 mac 上运行相同的存储库(命令:flutter run)。并收到以下错误:
admin@Mac-Admin firebase_admob_test % flutter run
Running "flutter pub get" in firebase_admob_test... 2.4s
Launching lib/main.dart on iPhone 8 in debug mode...
Running pod install... 6.1s
flutter: BannerAd event is MobileAdEvent.loaded
Running Xcode build...
└─Compiling, linking and signing... 4.9s
Xcode build done. 57.8s
Failed to build iOS app
Error output from Xcode build:
↳
** BUILD FAILED **
Xcode's output:
↳
/Users/admin/Projects/firebase_admob_test/ios/Runner/GeneratedPluginRegistra
nt.m:10:9: fatal error: module 'firebase_admob' not found
@import firebase_admob;
~~~~~~~^~~~~~~~~~~~~~
1 error generated.
note: Using new build system
note: Building targets in parallel
note: Planning build
note: Constructing build description
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'nanopb' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'GoogleUtilities' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'PromisesObjC' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'GoogleDataTransport' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'Runner' from project 'Runner')
warning: Capabilities for Signing & Capabilities may not function correctly
because its entitlements use a placeholder team ID. To resolve this, select
a development team in the Runner editor. (in target 'Runner' from project
'Runner')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'Pods-Runner' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'FirebaseInstallations' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'FirebaseCoreDiagnostics' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'FirebaseCore' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'GoogleAppMeasurement' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'FirebaseAnalytics' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is
set to 8.0, but the range of supported deployment target versions is 9.0 to
14.0.99. (in target 'Firebase' from project 'Pods')
无法为模拟器构建应用程序。在 iPhone 8 上启动应用程序时出错。
源代码可以在这里找到 https://github.com/vetlitet/firebase_admob_test
在问这里之前,我试图找到一个解决方案,但没有任何帮助。该模块仍然不可见。而且因为我是iOS开发的新手,我不知道如何继续调查这个问题。也许你可以建议一些方法去。