File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
FirebaseCore/Sources/Public Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -47,23 +47,23 @@ NS_SWIFT_NAME(FirebaseApp)
47
47
/* *
48
48
* Configures a default Firebase app. Raises an exception if any configuration step fails. The
49
49
* default app is named "__FIRAPP_DEFAULT". This method should be called after the app is launched
50
- * and before using Firebase services. This method is thread safe and contains synchronous file I/O
51
- * (reading GoogleService-Info.plist from disk).
50
+ * and before using Firebase services. This method should be called from the main thread and
51
+ * contains synchronous file I/O (reading GoogleService-Info.plist from disk).
52
52
*/
53
53
+ (void )configure;
54
54
55
55
/* *
56
56
* Configures the default Firebase app with the provided options. The default app is named
57
- * "__FIRAPP_DEFAULT". Raises an exception if any configuration step fails. This method is thread
58
- * safe .
57
+ * "__FIRAPP_DEFAULT". Raises an exception if any configuration step fails. This method should be
58
+ * called from the main thread .
59
59
*
60
60
* @param options The Firebase application options used to configure the service.
61
61
*/
62
62
+ (void )configureWithOptions:(FIROptions *)options NS_SWIFT_NAME (configure(options:));
63
63
64
64
/* *
65
65
* Configures a Firebase app with the given name and options. Raises an exception if any
66
- * configuration step fails. This method is thread safe .
66
+ * configuration step fails. This method should be called from the main thread .
67
67
*
68
68
* @param name The application's name given by the developer. The name should should only contain
69
69
Letters, Numbers and Underscore.
You can’t perform that action at this time.
0 commit comments