aboutsummaryrefslogtreecommitdiffhomepage
path: root/FirebaseAuth.podspec
blob: b08d830b9c5fb5a70a30e96dfba397e948a15b6e (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
66
67
68
Pod::Spec.new do |s|
  s.name             = 'FirebaseAuth'
  s.version          = '5.0.2'
  s.summary          = 'The official iOS client for Firebase Authentication (plus community support for macOS and tvOS)'

  s.description      = <<-DESC
Firebase Authentication allows you to manage your own account system without any backend code. It
supports email and password accounts, as well as several 3rd party authentication mechanisms.
                       DESC

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

  s.source           = {
    :git => 'https://github.com/firebase/firebase-ios-sdk.git',
    :tag => 'Auth-' + s.version.to_s
  }
  s.social_media_url = 'https://twitter.com/Firebase'
  s.ios.deployment_target = '8.0'
  s.osx.deployment_target = '10.10'
  s.tvos.deployment_target = '10.0'

  s.cocoapods_version = '>= 1.4.0'
  s.static_framework = true
  s.prefix_header_file = false

  source = 'Firebase/Auth/Source/'
  s.source_files = source + '**/*.[mh]'
  s.osx.exclude_files = [
    source + '**/FIRAuthAppDelegateProxy.[mh]',
    source + '**/FIRAuthNotificationManager.[mh]',
    source + '**/FIRAuthAppCredentialManager.[mh]',
    source + '**/FIRAuthAPNSTokenManager.[mh]',
    source + '**/FIRAuthAPNSTokenType.[mh]',
    source + '**/FIRAuthAPNSToken.[mh]',
    source + '**/FIRAuthDefaultUIDelegate.[mh]',
    source + '**/FIRAuthUIDelegate.h',
    source + '**/FIRAuthURLPresenter.[mh]',
    source + '**/FIRAuthWebView.[mh]',
    source + '**/FIRAuthWebViewController.[mh]',
    source + '**/FIRPhoneAuthCredential.[mh]',
    source + '**/FIRPhoneAuthProvider.[mh]'
  ]
  s.tvos.exclude_files = [
    source + '**/FIRAuthURLPresenter.[mh]',
    source + '**/FIRAuthWebView.[mh]',
    source + '**/FIRAuthWebViewController.[mh]',
    source + '**/FIRPhoneAuthCredential.[mh]',
    source + '**/FIRPhoneAuthProvider.[mh]'
  ]
  s.public_header_files = source + 'Public/*.h'
  s.preserve_paths = [
    'Firebase/Auth/README.md',
    'Firebase/Auth/CHANGELOG.md'
  ]
  s.pod_target_xcconfig = {
    'GCC_PREPROCESSOR_DEFINITIONS' =>
      'FIRAuth_VERSION=' + s.version.to_s +
      ' FIRAuth_MINOR_VERSION=' + s.version.to_s.split(".")[0] + "." + s.version.to_s.split(".")[1]
  }
  s.framework = 'SafariServices'
  s.framework = 'Security'
  s.dependency 'FirebaseAuthInterop', '~> 1.0'
  s.dependency 'FirebaseCore', '~> 5.0'
  s.dependency 'GoogleUtilities/Environment', '~> 5.0'
  s.dependency 'GTMSessionFetcher/Core', '~> 1.1'
end