fltbdface.podspec 1.3 KB

12345678910111213141516171819202122232425
  1. #
  2. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
  3. # Run `pod lib lint fltbdface.podspec' to validate before publishing.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'fltbdface'
  7. s.version = '1.0.0'
  8. s.summary = 'Baidu's face recognition SDK encapsulates the flutter version, calls native SDK and interface operations, and returns data to flutter'
  9. s.description = <<-DESC
  10. Baidu&#x27;s face recognition SDK encapsulates the flutter version, calls native SDK and interface operations, and returns data to flutter
  11. DESC
  12. s.homepage = 'http://example.com'
  13. s.license = { :file => '../LICENSE' }
  14. s.author = { 'Your Company' => 'email@example.com' }
  15. s.source = { :path => '.' }
  16. s.source_files = 'Classes/**/*'
  17. s.dependency 'Flutter'
  18. s.platform = :ios, '8.0'
  19. s.vendored_frameworks = 'Libs/FaceSDK/IDLFaceSDK.framework'
  20. # s.resources = 'Libs/FaceSDK/com.baidu.idl.face.faceSDK.bundle','Libs/FaceSDK/com.baidu.idl.face.model.bundle'
  21. # Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
  22. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
  23. s.swift_version = '5.0'
  24. end