diff --git a/AudioStreaming.podspec b/AudioStreaming.podspec new file mode 100644 index 0000000..b5e1694 --- /dev/null +++ b/AudioStreaming.podspec @@ -0,0 +1,21 @@ +Pod::Spec.new do |s| + s.name = 'AudioStreaming' + s.version = '0.1.0' + s.license = 'MIT' + s.summary = 'An AudioPlayer/Streaming library for iOS written in Swift using AVAudioEngine.' + s.homepage = 'https://github.com/dimitris-c/AudioStreaming' + s.authors = { 'Dimitris C.' => 'dimmdesign@gmail.com' } + s.source = { :git => 'https://github.com/dimitris-c/AudioStreaming.git', :tag => s.version } + + s.ios.deployment_target = '12.0' + + s.swift_versions = ['5.1', '5.2', '5.3'] + + s.source_files = 'AudioStreaming/**/*.swift' + + s.frameworks = 'AVFoundation', ' CoreAudio', 'AudioToolbox', 'Network' + + s.pod_target_xcconfig = { + 'SWIFT_INSTALL_OBJC_HEADER' => 'NO' + } +end \ No newline at end of file