Pod::Spec.new do |s| s.name = 'client_proxy_framework' s.version = '1.0.0' s.summary = 'Client proxy framework (Facebook bridge)' s.description = <<-DESC Registers MethodChannel for Facebook SDK init handshake used by Dart. DESC s.homepage = 'https://example.com' s.license = { :type => 'MIT', :file => '../LICENSE' } s.author = { 'FunyMee' => 'dev@example.com' } s.source = { :path => '.' } s.source_files = 'Classes/**/*' s.dependency 'Flutter' # 与 facebook_app_events 一致,便于在桥接层开启 FBSDK 调试日志 s.dependency 'FBSDKCoreKit', '~> 18.0' s.platform = :ios, '13.0' s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' } s.swift_version = '5.0' end