forked from icerockdev/moko-mvvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMultiPlatformLibraryMvvm.podspec
33 lines (27 loc) · 1.29 KB
/
MultiPlatformLibraryMvvm.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
29
30
31
32
33
Pod::Spec.new do |spec|
spec.name = 'MultiPlatformLibraryMvvm'
spec.version = '0.3.0'
spec.homepage = 'https://github.com/icerockdev/moko-mvvm'
spec.source = { :git => "https://github.com/icerockdev/moko-mvvm.git", :tag => "release/#{spec.version}" }
spec.authors = 'IceRock Development'
spec.license = { :type => 'Apache 2', :file => 'LICENSE.md' }
spec.summary = 'Swift additions to moko-mvvm Kotlin/Native library'
spec.module_name = "#{spec.name}"
spec.dependency 'MultiPlatformLibrary'
spec.ios.deployment_target = '9.0'
spec.swift_version = '4.2'
spec.subspec 'Core' do |sp|
sp.source_files = "mvvm/src/iosMain/swift/Core/**/*.{h,m,swift}"
end
spec.subspec 'AlamofireImage' do |sp|
sp.source_files = "mvvm/src/iosMain/swift/AlamofireImage/**/*.{h,m,swift}"
sp.dependency 'AlamofireImage'
end
spec.subspec 'SkyFloatingLabelTextField' do |sp|
sp.source_files = "mvvm/src/iosMain/swift/SkyFloatingLabelTextField/**/*.{h,m,swift}"
sp.dependency 'SkyFloatingLabelTextField'
end
spec.pod_target_xcconfig = {
'VALID_ARCHS' => '$(ARCHS_STANDARD_64_BIT)'
}
end