-
Notifications
You must be signed in to change notification settings - Fork 13
/
PowerAuthCore.podspec
36 lines (31 loc) · 1.16 KB
/
PowerAuthCore.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
Pod::Spec.new do |s|
# General information
s.cocoapods_version = '>= 1.10'
s.name = 'PowerAuthCore'
s.version = '1.9.2'
s.summary = 'PowerAuthCore library for iOS'
s.homepage = 'https://github.com/wultra/powerauth-mobile-sdk'
s.social_media_url = 'https://twitter.com/wultra'
s.documentation_url = 'https://github.com/wultra/powerauth-mobile-sdk/blob/develop/docs/PowerAuth-SDK-for-iOS.md'
s.author = {
'Wultra s.r.o.' => '[email protected]'
}
s.license = {
:type => 'Apache License, Version 2.0',
:file => 'LICENSE'
}
# Source files
s.source = {
:git => 'https://github.com/wultra/powerauth-mobile-sdk.git',
:tag => "#{s.version}",
:submodules => true
}
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
# XCFramework build
s.prepare_command = <<-CMD
./scripts/ios-build-sdk.sh buildCore --out-dir Build/PowerAuthCore --optional-tvos
CMD
# Produced files
s.vendored_frameworks = 'Build/PowerAuthCore/PowerAuthCore.xcframework'
end