在 Xcode 上找不到框架 FirebaseInstanceID
Posted
技术标签:
【中文标题】在 Xcode 上找不到框架 FirebaseInstanceID【英文标题】:Framework not found FirebaseInstanceID on Xcode 【发布时间】:2020-06-10 10:46:43 【问题描述】:我从 Xcode 得到以下错误。尝试了互联网上的许多解决方案,但没有用。
ld: framework not found FirebaseInstanceID
我尝试过的解决方案:
-
https://***.com/a/31298214/10182352
framework not found FirebaseInstanceID in Xcode
https://***.com/a/52386172/10182352
尝试删除 Podfile.lock 和 Podfile 并再次启动:
pod init
pod install
pod update
我的 Podfile 看起来像:
# Uncomment this line to define a global platform for your project
platform :ios, '10.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner',
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
def parse_KV_file(file, separator='=')
file_abs_path = File.expand_path(file)
if !File.exists? file_abs_path
return [];
end
generated_key_values =
skip_line_start_symbols = ["#", "/"]
File.foreach(file_abs_path) do |line|
next if skip_line_start_symbols.any? |symbol| line =~ /^\s*#symbol/
plugin = line.split(pattern=separator)
if plugin.length == 2
podname = plugin[0].strip()
path = plugin[1].strip()
podpath = File.expand_path("#path", file_abs_path)
generated_key_values[podname] = podpath
else
puts "Invalid plugin specification: #line"
end
end
generated_key_values
end
target 'Runner' do
use_frameworks!
use_modular_headers!
# Flutter Pod
copied_flutter_dir = File.join(__dir__, 'Flutter')
copied_framework_path = File.join(copied_flutter_dir, 'Flutter.framework')
copied_podspec_path = File.join(copied_flutter_dir, 'Flutter.podspec')
unless File.exist?(copied_framework_path) && File.exist?(copied_podspec_path)
# Copy Flutter.framework and Flutter.podspec to Flutter/ to have something to link against if the xcode backend script has not run yet.
# That script will copy the correct debug/profile/release version of the framework based on the currently selected Xcode configuration.
# CocoaPods will not embed the framework on pod install (before any build phases can generate) if the dylib does not exist.
generated_xcode_build_settings_path = File.join(copied_flutter_dir, 'Generated.xcconfig')
unless File.exist?(generated_xcode_build_settings_path)
raise "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
generated_xcode_build_settings = parse_KV_file(generated_xcode_build_settings_path)
cached_framework_dir = generated_xcode_build_settings['FLUTTER_FRAMEWORK_DIR'];
unless File.exist?(copied_framework_path)
FileUtils.cp_r(File.join(cached_framework_dir, 'Flutter.framework'), copied_flutter_dir)
end
unless File.exist?(copied_podspec_path)
FileUtils.cp(File.join(cached_framework_dir, 'Flutter.podspec'), copied_flutter_dir)
end
end
# Keep pod path relative so it can be checked into Podfile.lock.
pod 'Flutter', :path => 'Flutter'
# Plugin Pods
# Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
# referring to absolute paths on developers' machines.
system('rm -rf .symlinks')
system('mkdir -p .symlinks/plugins')
plugin_pods = parse_KV_file('../.flutter-plugins')
plugin_pods.each do |name, path|
symlink = File.join('.symlinks', 'plugins', name)
File.symlink(path, symlink)
pod name, :path => File.join(symlink, 'ios')
end
end
# Prevent Cocoapods from embedding a second Flutter framework and causing an error with the new Xcode build system.
install! 'cocoapods', :disable_input_output_paths => true
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
pod 'FirebaseCore'
pod 'Firebase/Analytics'
pod 'Firebase/Performance'
pod 'Crashlytics', '~> 3.12.0'
pod 'GoogleSignIn', '~> 4.4.0'
我还确保我打开的是xcodeworkspace
而不是xcodeproject
。
为了进一步澄清,我也从我的Frameworks
标签搜索路径中删除了这个框架。
【问题讨论】:
【参考方案1】:@Paul 你的回答一尘不染。根据您的建议,我设法消除了这个烦人的问题:
-
打开 MyRockingApp.xcodeproj
链接 -> 其他链接器标志 -> 调试/发布
删除框架“FirebaseInstanceID”
非常感谢!
【讨论】:
这是正确的解决方案。作品。 FirebaseInstanceID 也被弃用了。 为了更清楚一点,请转到:Targets
> Build Settings
> 在右上角的搜索框中输入FirebaseInstanceID
> 然后单击向下箭头打开Other Linker Flags
> Debug > 双击右侧显示 -ObjC > 当列表出现时,选择/单击/突出显示其正上方的 FirebaseInstanceID
和 -framework
> 单击减号在底部签名。 Release 也这样做,因为它在这两个地方。仅供参考,如果您不删除 -framework
以及它,您的应用将无法构建 ***.com/a/69888126/4833705【参考方案2】:
在 12 小时不断地阅读 Firebase 的文档并在 Stack Overflow 上实施每个答案后,我设法消除了这个错误。以下步骤是我为此所做的:
上面提到的框架不包含在我安装的 POD 中。所以需要从https://firebase.google.com/download/ios显式下载框架
下载 SDK 后,首先通过 Xcode -> Preferences -> Locations -> Derived Data 清除 DerivedData。进入该目录并删除 DerivedData 文件夹。
删除 Podfile.lock 和 Pods 文件夹并执行 pod init
和 pod install
。
打开 XCode 并复制您下载的框架 SDK 的路径。对我来说是:/user/Downloads/Firebase/FirebaseMessaging/FirebaseInstanceID.xcframework/ios-i386_x86_64-simulator
并将其复制到 Framework Search Paths
中,在 Build Settings
下。
将名为FirebaseInstanceID.framework
的文件夹拖放到框架列表中,如问题的第二张图片(左侧)所示。
【讨论】:
但是,如果我们安装了其他 pod,例如 NVActivityIndicator 等,会发生什么,对我来说它抛出了一个错误 其他 pod 不会受到影响,因为您只是为这个特定框架设置路径,其余所有框架都不会受到影响。【参考方案3】:从链接器列表中删除 -l"FirebaseInstanceID"。 [目标/构建设置/链接/其他链接器标志]。 更新 pod 时,它删除了库,但没有从 target.linker.list 中删除密钥。手动删除后 pod.update 不返回。
【讨论】:
【参考方案4】:我怀疑 Xcode 项目对 FirebaseInstanceID 有一个挥之不去的引用。列出的 pod 的最新版本不需要它。
应该可以从 Xcode 项目中删除对 FirebaseInstanceID 的引用。
【讨论】:
FirebaseInstanceID 框架不适用于我在 Podfile 中列出的框架。所以我必须下载整个 SDK,它存在于 FirebaseMessaging 等不同的其他框架中。我修复了这个顺便说一句。【参考方案5】:pod deintegrate
pod install
解决了我的问题。
【讨论】:
以上是关于在 Xcode 上找不到框架 FirebaseInstanceID的主要内容,如果未能解决你的问题,请参考以下文章
在 Apple Silicon xcode 上找不到 Swiftlint
Xcode 11 beta 上找不到 iPhone 7 模拟器
是否可以在不拥有 iPhone 的情况下发布 iOS 应用程序?在 Xcode 上找不到配置文件