aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Core
diff options
context:
space:
mode:
authorGravatar Paul Beusterien <paulbeusterien@google.com>2018-04-24 17:19:38 -0700
committerGravatar GitHub <noreply@github.com>2018-04-24 17:19:38 -0700
commite281be7a9453bcaa70e00bf94391c3c3067ebaad (patch)
tree549cf805365ee68f3bb2c1cca3ef7bf1584fec01 /Firebase/Core
parent83b519f0a53a2efc946b32b1708d882a34f30d3a (diff)
Notice for tvOS and macOS (#1177)
Diffstat (limited to 'Firebase/Core')
-rw-r--r--Firebase/Core/FIRApp.m6
1 files changed, 6 insertions, 0 deletions
diff --git a/Firebase/Core/FIRApp.m b/Firebase/Core/FIRApp.m
index c43db6e..3d05f12 100644
--- a/Firebase/Core/FIRApp.m
+++ b/Firebase/Core/FIRApp.m
@@ -104,6 +104,12 @@ static NSMutableDictionary *sLibraryVersions;
kPlistURL];
}
[FIRApp configureDefaultAppWithOptions:options sendingNotifications:YES];
+#if TARGET_OS_OSX || TARGET_OS_TV
+ FIRLogNotice(kFIRLoggerCore, @"I-COR000028",
+ @"tvOS and macOS SDK support is not part of the official Firebase product. "
+ @"Instead they are community supported. Details at "
+ @"https://github.com/firebase/firebase-ios-sdk/blob/master/README.md.");
+#endif
}
+ (void)configureWithOptions:(FIROptions *)options {