-
Notifications
You must be signed in to change notification settings - Fork 2
/
AppGuard.podspec
29 lines (27 loc) · 1.14 KB
/
AppGuard.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
Pod::Spec.new do |s|
s.name = 'AppGuard'
s.version = '0.5.0'
s.summary = 'AppGuard is a guard 💂♀️ for your iOS app, to check / force users to update your app or show what changed.'
s.homepage = 'https://github.com/smartnsoft/AppGuard'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Smart&Soft' => '[email protected]' }
s.source = { :git => 'https://github.com/smartnsoft/AppGuard.git', :tag => s.version.to_s }
s.swift_version = '4.2'
s.ios.deployment_target = '11.0'
s.frameworks = 'UIKit'
s.default_subspec = 'Core'
s.static_framework = true
s.subspec 'Core' do |core|
core.dependency 'Jelly', '~> 2.3.0'
core.source_files = [
'AppGuard/Classes/Logic/*.{swift}',
'AppGuard/Classes/UI/*.{swift}'
]
core.resource_bundles = {'AppGuard' => ['AppGuard/Classes/UI/*.{xib}']}
end
s.subspec 'FirebaseRemoteConfig' do |firebase|
firebase.dependency 'AppGuard/Core'
firebase.dependency 'Firebase/RemoteConfig', '~> 10.24.0'
firebase.source_files = 'AppGuard/Classes/Firebase/**/*.{swift}'
end
end