# # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html. # Run `pod lib lint fltbdface.podspec' to validate before publishing. # Pod::Spec.new do |s| s.name = 'fltbdface' s.version = '1.0.0' s.summary = 'Baidu's face recognition SDK encapsulates the flutter version, calls native SDK and interface operations, and returns data to flutter' s.description = <<-DESC Baidu's face recognition SDK encapsulates the flutter version, calls native SDK and interface operations, and returns data to flutter DESC s.homepage = 'https://www.bughub.dev' s.license = { :file => '../LICENSE' } s.author = { 'RandyWei' => 'smile561607154@gmail.com' } s.source = { :path => '.' } s.source_files = 'Classes/**/*' s.dependency 'Flutter' s.platform = :ios, '9.0' s.ios.libraries = 'c++' s.vendored_frameworks = 'Libs/FaceSDK/IDLFaceSDK.framework' # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' } s.swift_version = '5.0' end