StreamShield.podspec 1.3 KB

1234567891011121314151617181920212223242526272829
  1. #
  2. # Be sure to run `pod spec lint PalioLite.podspec' to ensure this is a
  3. # valid spec and to remove all comments including this before submitting the spec.
  4. #
  5. # To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
  6. # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
  7. #
  8. Pod::Spec.new do |spec|
  9. spec.name = "StreamShield"
  10. spec.version = "1.0.0"
  11. spec.summary = "StreamShield Framework"
  12. spec.description = <<-DESC
  13. StreamShield Framework, embed Security features into your mobile apps within minutes...
  14. DESC
  15. spec.homepage = "https://nexilis.io/"
  16. spec.license = "MIT"
  17. spec.author = { "Yayan D Wicaksono" => "ya2n.wicaksono@gmail.com" }
  18. spec.ios.deployment_target = "14.0"
  19. spec.source = { :path => '.' }
  20. spec.source_files = 'StreamShield/Source/**/*'
  21. spec.resource_bundles = { 'StreamShield' => ['StreamShield/Resource/**/*']}
  22. spec.swift_version = '5.5.1'
  23. spec.dependency 'nuSDKService', '~> 3.0.1'
  24. spec.ios.vendored_frameworks = "StreamShield.framework"
  25. spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', 'ENABLE_BITCODE' => 'NO' }
  26. spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64', 'ENABLE_BITCODE' => 'NO' }
  27. end