This repository was archived by the owner on Jan 16, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathParseFacebookUtilsV4.podspec
More file actions
41 lines (34 loc) · 1.55 KB
/
ParseFacebookUtilsV4.podspec
File metadata and controls
41 lines (34 loc) · 1.55 KB
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
Pod::Spec.new do |s|
s.name = 'ParseFacebookUtilsV4'
s.version = '1.11.2'
s.license = { :type => 'BSD' }
s.homepage = 'http://parseplatform.org/'
s.summary = 'Parse is a complete technology stack to power your app\'s backend.'
s.authors = 'Parse Community'
s.social_media_url = 'https://twitter.com/ParsePlatform'
s.source = { :git => "https://github.com/ParsePlatform/ParseFacebookUtils-iOS.git", :tag => "v4-#{s.version.to_s}" }
s.platform = :ios, :tvos
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.public_header_files = 'ParseFacebookUtils/*.h'
s.source_files = 'ParseFacebookUtils/**/*.{h,m}'
s.ios.exclude_files = 'ParseFacebookUtils/Internal/AuthenticationProvider/tvOS/**/*.{h,m}'
s.tvos.exclude_files = 'ParseFacebookUtils/Internal/AuthenticationProvider/iOS/**/*.{h,m}'
s.frameworks = 'AudioToolbox',
'CFNetwork',
'CoreGraphics',
'CoreLocation',
'QuartzCore',
'Security',
'SystemConfiguration'
s.ios.weak_frameworks = 'Accounts',
'Social'
s.libraries = 'z', 'sqlite3'
s.dependency 'Bolts/Tasks', '~> 1.9'
s.dependency 'Parse', '~> 1.15.1'
s.dependency 'FBSDKCoreKit', '~> 4.28.0'
s.ios.dependency 'FBSDKLoginKit', '~> 4.28.0'
s.tvos.dependency 'FBSDKTVOSKit', '~> 4.28.0'
s.tvos.dependency 'FBSDKShareKit', '~> 4.28.0'
end