Proyectos de Subversion Iphone Microlearning

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
// Copyright 2019 Google
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
//      http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
 
15
#import <FirebaseCore/FirebaseCore.h>
16
 
17
#if !defined(__has_include)
18
  #error "Firebase.h won't import anything if your compiler doesn't support __has_include. Please \
19
          import the headers individually."
20
#else
21
  #if __has_include(<FirebaseAnalytics/FirebaseAnalytics.h>)
22
    #import <FirebaseAnalytics/FirebaseAnalytics.h>
23
  #endif
24
 
25
  #if __has_include(<FirebaseAppCheck/FirebaseAppCheck.h>)
26
    #import <FirebaseAppCheck/FirebaseAppCheck.h>
27
  #endif
28
 
29
  #if __has_include(<FirebaseAppDistribution/FirebaseAppDistribution.h>)
30
    #import <FirebaseAppDistribution/FirebaseAppDistribution.h>
31
  #endif
32
 
33
  #if __has_include(<FirebaseAuth/FirebaseAuth.h>)
34
    #import <FirebaseAuth/FirebaseAuth.h>
35
  #endif
36
 
37
  #if __has_include(<FirebaseCrashlytics/FirebaseCrashlytics.h>)
38
    #import <FirebaseCrashlytics/FirebaseCrashlytics.h>
39
  #endif
40
 
41
  #if __has_include(<FirebaseDatabase/FirebaseDatabase.h>)
42
    #import <FirebaseDatabase/FirebaseDatabase.h>
43
  #endif
44
 
45
  #if __has_include(<FirebaseDynamicLinks/FirebaseDynamicLinks.h>)
46
    #import <FirebaseDynamicLinks/FirebaseDynamicLinks.h>
47
  #endif
48
 
49
  #if __has_include(<FirebaseFirestore/FirebaseFirestore.h>)
50
    #import <FirebaseFirestore/FirebaseFirestore.h>
51
  #endif
52
 
53
  #if __has_include(<FirebaseFunctions/FirebaseFunctions.h>)
54
    #import <FirebaseFunctions/FirebaseFunctions.h>
55
  #endif
56
 
57
  #if __has_include(<FirebaseInAppMessaging/FirebaseInAppMessaging.h>)
58
    #import <FirebaseInAppMessaging/FirebaseInAppMessaging.h>
59
  #endif
60
 
61
  #if __has_include(<FirebaseInstallations/FirebaseInstallations.h>)
62
    #import <FirebaseInstallations/FirebaseInstallations.h>
63
  #endif
64
 
65
  #if __has_include(<FirebaseMessaging/FirebaseMessaging.h>)
66
    #import <FirebaseMessaging/FirebaseMessaging.h>
67
  #endif
68
 
69
  #if __has_include(<FirebasePerformance/FirebasePerformance.h>)
70
    #import <FirebasePerformance/FirebasePerformance.h>
71
  #endif
72
 
73
  #if __has_include(<FirebaseRemoteConfig/FirebaseRemoteConfig.h>)
74
    #import <FirebaseRemoteConfig/FirebaseRemoteConfig.h>
75
  #endif
76
 
77
  #if __has_include(<FirebaseStorage/FirebaseStorage.h>)
78
    #import <FirebaseStorage/FirebaseStorage.h>
79
  #endif
80
 
81
#endif  // defined(__has_include)