Firebase.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. #import <FirebaseCore/FirebaseCore.h>
  15. #if !defined(__has_include)
  16. #error "Firebase.h won't import anything if your compiler doesn't support __has_include. Please \
  17. import the headers individually."
  18. #else
  19. #if __has_include(<FirebaseAnalytics/FirebaseAnalytics.h>)
  20. #import <FirebaseAnalytics/FirebaseAnalytics.h>
  21. #endif
  22. #if __has_include(<FirebaseAppCheck/FirebaseAppCheck.h>)
  23. #import <FirebaseAppCheck/FirebaseAppCheck.h>
  24. #endif
  25. #if __has_include(<FirebaseAppDistribution/FirebaseAppDistribution.h>)
  26. #import <FirebaseAppDistribution/FirebaseAppDistribution.h>
  27. #endif
  28. #if __has_include(<FirebaseAuth/FirebaseAuth.h>)
  29. #import <FirebaseAuth/FirebaseAuth.h>
  30. #endif
  31. #if __has_include(<FirebaseCrashlytics/FirebaseCrashlytics.h>)
  32. #import <FirebaseCrashlytics/FirebaseCrashlytics.h>
  33. #endif
  34. #if __has_include(<FirebaseDatabase/FirebaseDatabase.h>)
  35. #import <FirebaseDatabase/FirebaseDatabase.h>
  36. #endif
  37. #if __has_include(<FirebaseDynamicLinks/FirebaseDynamicLinks.h>)
  38. #import <FirebaseDynamicLinks/FirebaseDynamicLinks.h>
  39. #endif
  40. #if __has_include(<FirebaseFirestore/FirebaseFirestore.h>)
  41. #import <FirebaseFirestore/FirebaseFirestore.h>
  42. #endif
  43. #if __has_include(<FirebaseFunctions/FirebaseFunctions.h>)
  44. #import <FirebaseFunctions/FirebaseFunctions.h>
  45. #endif
  46. #if __has_include(<FirebaseInAppMessaging/FirebaseInAppMessaging.h>)
  47. #import <FirebaseInAppMessaging/FirebaseInAppMessaging.h>
  48. #endif
  49. #if __has_include(<FirebaseInstallations/FirebaseInstallations.h>)
  50. #import <FirebaseInstallations/FirebaseInstallations.h>
  51. #endif
  52. #if __has_include(<FirebaseMessaging/FirebaseMessaging.h>)
  53. #import <FirebaseMessaging/FirebaseMessaging.h>
  54. #endif
  55. #if __has_include(<FirebasePerformance/FirebasePerformance.h>)
  56. #import <FirebasePerformance/FirebasePerformance.h>
  57. #endif
  58. #if __has_include(<FirebaseRemoteConfig/FirebaseRemoteConfig.h>)
  59. #import <FirebaseRemoteConfig/FirebaseRemoteConfig.h>
  60. #endif
  61. #if __has_include(<FirebaseStorage/FirebaseStorage.h>)
  62. #import <FirebaseStorage/FirebaseStorage.h>
  63. #endif
  64. #endif // defined(__has_include)