RayProxy.podspec 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
  3. # Run `pod lib lint raylink_sdk_flutter.podspec` to validate before publishing.
  4. #
  5. Pod::Spec.new do |s|
  6. s.name = 'RayProxy'
  7. s.version = '0.0.1'
  8. s.summary = 'A new flutter plugin project.'
  9. s.description = <<-DESC
  10. A new flutter plugin project.
  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.platform = :ios, '11.0'
  18. s.vendored_libraries = [
  19. '*.a'
  20. ]
  21. # $dir = File.dirname(__FILE__)
  22. # s.xcconfig = {
  23. # "HEADER_SEARCH_PATHS" => [
  24. # "#$dir/include/"
  25. # ]
  26. # }
  27. s.xcconfig = {
  28. "HEADER_SEARCH_PATHS" => [
  29. "${PODS_ROOT}/../RayProxy/include/"
  30. ]
  31. }
  32. s.libraries = 'c++', 'z'
  33. s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
  34. s.swift_version = '5.0'
  35. s.static_framework = true
  36. end