-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathWannaTryOn.podspec
42 lines (35 loc) · 1.43 KB
/
WannaTryOn.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
34
35
36
37
38
39
40
41
42
Pod::Spec.new do |s|
s.name = 'WannaTryOn'
s.version = '7.3.0'
s.author = '[email protected]'
s.homepage = "https://wanna.fashion"
s.readme = "https://github.com/WANNABY/WannaSDK-iOS/blob/master/README.md"
s.platform = 'ios', 'macos'
s.ios.deployment_target = '12.0'
s.swift_version = '5.9'
s.summary = 'Mobile Virtual Try-On SDK'
s.license = {
:type => 'Commercial',
:text => <<-LICENSE
Working with WANNA SDK is subject to Terms of use(https://wanna.fashion/terms-trial). Please review them before downloading the SDK and starting to use it.
LICENSE
}
s.description = <<-DESC
WANNA SDK empowers iOS applications with the Augmented Reality (AR) Try-On
capabilities for shoes and watches. Once integrated, the AR Try-On feature
allows app users to try sneakers or watches in real-time with their
smartphones by pointing a mobile camera at their feet or wrist.
DESC
s.source = {
:git => 'https://github.com/WANNABY/WannaSDK-iOS.git',
:branch => 'master'
}
s.subspec 'TryOn' do |ss|
ss.source_files = 'TryOn/Sources/**/*.{swift,storyboard}'
ss.dependency 'WannaSDK'
ss.dependency 'WannaTryOn/Toolkit'
end
s.subspec 'Toolkit' do |ss|
ss.source_files = 'Toolkit/Sources/**/*.{swift}'
end
end