aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Auth/FirebaseAuth.podspec
blob: cda5f06dc1e8b533fc35778f435166f5d01ce5ae (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# This podspec is not intended to be deployed. It is solely for the static
# library framework build process at
# https://github.com/firebase/firebase-ios-sdk/tree/master/BuildFrameworks

Pod::Spec.new do |s|
  s.name             = 'FirebaseAuth'
  s.version          = '4.0.0'
  s.summary          = 'Firebase Open Source Libraries for iOS.'

  s.description      = <<-DESC
Simplify your iOS development, grow your user base, and monetize more effectively with Firebase.
                       DESC

  s.homepage         = 'https://firebase.google.com'
  s.license          = { :type => 'Apache', :file => '../../LICENSE' }
  s.authors          = 'Google, Inc.'

  # NOTE that the FirebaseCommunity pod is neither publicly deployed nor yet interchangeable with the
  # Firebase pod
  s.source           = { :git => 'https://github.com/firebase/firebase-ios-sdk.git', :tag => s.version.to_s }
  s.social_media_url = 'https://twitter.com/Firebase'
  s.ios.deployment_target = '7.0'
  s.osx.deployment_target = '10.10'

  s.source_files = '**/*.[mh]'
  s.osx.exclude_files =
    'Source/**/FIRAuthAppDelegateProxy.[mh]',
    'Source/**/FIRAuthNotificationManager.[mh]',
    'Source/**/FIRAuthAppCredentialManager.[mh]',
    'Source/**/FIRAuthAPNSTokenManager.[mh]',
    'Source/**/FIRAuthAPNSTokenType.[mh]',
    'Source/**/FIRAuthAPNSToken.[mh]',
    'Source/**/FIRPhoneAuthProvider.[mh]'
  s.public_header_files =
    'Source/FirebaseAuth.h',
    'Source/FirebaseAuthVersion.h',
    'Source/FIRAdditionalUserInfo.h',
    'Source/FIRAuth.h',
    'Source/FIRAuthAPNSTokenType.h',
    'Source/FIRAuthCredential.h',
    'Source/FIRAuthDataResult.h',
    'Source/FIRAuthErrors.h',
    'Source/FIRAuthSwiftNameSupport.h',
    'Source/AuthProviders/EmailPassword/FIREmailAuthProvider.h',
    'Source/AuthProviders/Facebook/FIRFacebookAuthProvider.h',
    'Source/AuthProviders/GitHub/FIRGitHubAuthProvider.h',
    'Source/AuthProviders/Google/FIRGoogleAuthProvider.h',
    'Source/AuthProviders/OAuth/FIROAuthProvider.h',
    'Source/AuthProviders/Phone/FIRPhoneAuthCredential.h',
    'Source/AuthProviders/Phone/FIRPhoneAuthProvider.h',
    'Source/AuthProviders/Twitter/FIRTwitterAuthProvider.h',
    'Source/FIRUser.h',
    'Source/FIRUserInfo.h'
  s.preserve_paths =
    'README.md',
    'CHANGELOG.md'
  s.xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' =>
    '$(inherited) ' + 'FIRAuth_VERSION=' + s.version.to_s +
    ' FIRAuth_MINOR_VERSION=' + s.version.to_s.split(".")[0] + "." + s.version.to_s.split(".")[1]
  }
  s.framework = 'Security'
#  s.dependency 'FirebaseCommunity/Core'
  s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
  s.dependency 'GoogleToolboxForMac/NSDictionary+URLArguments', '~> 2.1'
end