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