找不到模块“ firebase_admob”

时间:2020-10-28 19:35:00

标签: flutter firebase-admob

尝试在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/vetalitet/firebase_admob_test

在问这里之前,我试图找到一个解决方案,但没有任何帮助。该模块仍然不可见。 而且由于我是iOS开发的新手,所以我不知道如何继续调查此问题。 也许您可以提出一些建议。

0 个答案:

没有答案
相关问题