-
Notifications
You must be signed in to change notification settings - Fork 0
/
WAL.podspec
28 lines (25 loc) · 1.03 KB
/
WAL.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# Be sure to run `pod spec lint WAL.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "WAL"
s.version = "0.1.0"
s.summary = "WebRTC Abstraction Layer"
s.description = "Easy use of WebRTC to build a VoIP app"
s.homepage = "https://kurzdigital.com"
s.license = { :type => 'BSD'}
s.author = { "Christian Braun" => "christian.braun@kurzdigital.com" }
s.xcconfig = { "ENABLE_BITCODE" => "NO" }
s.social_media_url = "https://twitter.com/kurzdigital"
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/kurzdigital/WAL.git", :tag => s.version.to_s}
s.source_files = "WAL/**/*"
s.requires_arc = true
s.swift_version = "4.1"
s.dependency "WebRTC", "~> 63.11"
s.dependency "Starscream"
end