-
Notifications
You must be signed in to change notification settings - Fork 0
/
WopataLogin.podspec
28 lines (23 loc) · 1.12 KB
/
WopataLogin.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
Pod::Spec.new do |s|
s.name = 'WopataLogin'
s.version = '4.2.0'
s.summary = 'WopataLogin is a social/native sign-signup module for iOS'
s.homepage = '[email protected]:wopata/wopata-registration-mod-ios.git'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Wopata' => '[email protected]' }
s.source = { :git => '[email protected]:wopata/wopata-registration-mod-ios.git', :tag => "v#{s.version.to_s}" }
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
s.ios.deployment_target = '9.0'
s.source_files = 'Source/**/*.swift'
s.resource_bundles = {
'WopataLogin' => ['Source/Images.xcassets','Source/Localizations/*.lproj/Localizable.strings'],
'GoogleSignIn' => ['Source/Google/GoogleSignIn.bundle']
}
s.dependency 'SnapKit', '~> 4.0.0'
s.dependency 'FBSDKCoreKit', '~> 4.27'
s.dependency 'FBSDKLoginKit', '~> 4.27'
s.dependency 'FBSDKShareKit', '~> 4.27'
s.frameworks = 'SafariServices', 'SystemConfiguration'
s.vendored_frameworks = 'Source/Google/*.framework'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' }
end