-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdateChecker.podspec
More file actions
23 lines (22 loc) · 1.12 KB
/
UpdateChecker.podspec
File metadata and controls
23 lines (22 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'UpdateChecker'
s.version = '1.0'
s.swift_version = '5.1', '5.2', '5.3', '5.4', '5.5'
s.summary = 'Simple app version checker from AppStore'
s.homepage = 'https://github.com/InstaRobot/Update-Checker'
s.license = 'MIT'
s.author = { 'Vitaliy Podolskiy' => 'instarobot.net@gmail.com' }
s.description = <<-DESC
Simple app version checker from AppStore.
DESC
s.source = { :git => 'https://github.com/InstaRobot/Update-Checker.git', :tag => s.version.to_s }
s.platform = :ios
s.ios.deployment_target = '12.0'
s.requires_arc = true
s.source_files = 'UpdateChecker/Source/**/*'
s.frameworks = 'Foundation'#, 'CommonCrypto'
s.module_name = 'UpdateChecker'
s.documentation_url = 'https://github.com/InstaRobot/Update-Checker'
#s.dependency 'CryptoSwift', '1.3.8'
s.pod_target_xcconfig = { 'PRODUCT_BUNDLE_IDENTIFIER': 'studio.devlab.UpdateChecker' }
end