LiveKitPlugin.podspec 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Start from https://github.com/CocoaPods/pod-template/blob/master/NAME.podspec
  2. #
  3. # Be sure to run `pod lib lint ${POD_NAME}.podspec' to ensure this is a
  4. # valid spec before submitting.
  5. #
  6. # Any lines starting with a # are optional, but their use is encouraged
  7. # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
  8. #
  9. Pod::Spec.new do |s|
  10. s.name = 'LiveKitPlugin'
  11. s.version = '1.0.0'
  12. s.summary = 'LiveKitPlugin components'
  13. # This description is used to generate tags and improve search results.
  14. # * Think: What does it do? Why did you write it? What is the focus?
  15. # * Try to keep it short, snappy and to the point.
  16. # * Write the description between the DESC delimiters below.
  17. # * Finally, don't worry about the indent, CocoaPods strips it!
  18. s.description = <<-DESC
  19. Contains the decomponents for Design System.
  20. DESC
  21. s.homepage = 'https://github.com/Hoxin'
  22. s.license = 'MIT'
  23. s.author = 'MIT'
  24. s.source = { :path => '.' }
  25. s.version = "1.0.1"
  26. s.ios.deployment_target = '12.0'
  27. s.swift_versions = '5.3'
  28. # s.source_files = 'LiveKitPlugin/Classes/**/*'
  29. s.subspec "Source" do |sp|
  30. sp.public_header_files = 'LiveKitPlugin/Classes/**/*.{h,hpp}'
  31. sp.source_files = 'LiveKitPlugin/Classes/**/*'
  32. end
  33. s.resources = 'LiveKitPlugin/Resources/**/*'
  34. s.vendored_libraries = 'LiveKitPlugin/Classes/**/*.a'
  35. s.dependency 'LiveKitClient', '2.0.5'
  36. s.dependency 'LiveKitWebRTC', '114.5735.14'
  37. end