forked from icerockdev/moko-socket-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmokoSocketIo.podspec
22 lines (18 loc) · 991 Bytes
/
mokoSocketIo.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = 'mokoSocketIo'
spec.version = '0.4.0'
spec.homepage = 'https://github.com/icerockdev/moko-socket-io'
spec.source = { :git => "https://github.com/icerockdev/moko-socket-io.git", :tag => "release/#{spec.version}" }
spec.authors = 'IceRock Development'
spec.license = { :type => 'Apache 2', :file => 'LICENSE.md' }
spec.summary = 'Swift additions to Kotlin/Native library'
spec.module_name = "#{spec.name}"
spec.source_files = "socket-io/src/iosMain/swift/**/*.{h,m,swift}"
spec.resources = "socket-io/src/iosMain/bundle/**/*"
spec.dependency 'Socket.IO-Client-Swift', '~> 15.2.0'
spec.ios.deployment_target = '11.0'
spec.swift_version = '5.0'
spec.pod_target_xcconfig = {
'VALID_ARCHS' => '$(ARCHS_STANDARD_64_BIT)'
}
end