首页 > 解决方案 > 未找到框架我已经卸载了

问题描述

在我构建时遇到 Xcode 说“找不到框架”的问题。奇怪的是我已经卸载了 by

  1. 从 Podfile 中删除
  2. pod update
  3. 重新打开xcworkspace 我也尝试删除~/Library/Developer/Xcode/DerivedData/
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'myapp' do
  # Comment the next line if you don't want to use dynamic frameworks
  use_frameworks!

  # Pods for myapp
  pod 'FBSDKCoreKit'
  pod 'FBSDKLoginKit'
  pod 'FBSDKShareKit'
  pod 'Google-Mobile-Ads-SDK'
  pod 'GoogleMobileAdsMediationFacebook'
  pod 'GoogleMobileAdsMediationMaio'
  pod 'GoogleMobileAdsMediationMoPub'
  pod 'GoogleMobileAdsMediationAppLovin'
  pod 'GoogleMobileAdsMediationAdColony'
  pod 'GoogleMobileAdsMediationUnity'
  pod 'GoogleMobileAdsMediationVungle'

  # add the Firebase pod for Google Analytics
  pod 'Firebase/Analytics'
  pod 'Firebase/Performance'
  pod 'Firebase/Crashlytics'
  pod 'Firebase/Messaging'

  # For In-app purchase
  pod 'SwiftyStoreKit'

  target 'myappTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'myappUITests' do
    # Pods for testing
  end

end

我要删除的原因GoogleMobileAdsMediationTestSuite

GoogleMobileAdsMediationTestSuite导致以下问题。 在此处输入图像描述

我想问什么

标签: swiftxcode

解决方案


推荐阅读