You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Renamed the simplified APIs.
* Cleaned up the init method API calls in the demo app.
* Removed async and sync init APIs and moved the functionality to existing init methods. Also updated the logs.
* Updated logs for the new init APIs.
* Updated the demo app with the new init methods (i.e., remove the async and sync methods).
* Consolidated and cleaned up client initialization tests.
* Redefined how we get the bundled datafile. We are going to use the datafile from the manager builder instead of looking for a specific file name in the app resources. This solution is more clean and is applicable to fullstack SDKs as well.
Copy file name to clipboardExpand all lines: OptimizelySDKCore/OptimizelySDKCore/OPTLYLoggerMessages.m
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -154,10 +154,10 @@
154
154
NSString *const OPTLYLoggerMessagesManagerLoggerDoesNotConformToOPTLYLoggerProtocol = @"[MANAGER] Logger does not conform to the OPTLYLogger protocol.";
155
155
NSString *const OPTLYLoggerMessagesManagerMustBeInitializedWithProjectId = @"[MANAGER] An Optimizely Manager instance must be initialized with a project ID.";
156
156
NSString *const OPTLYLoggerMessagesManagerProjectIdCannotBeEmptyString = @"[MANAGER] The project ID for the Optimizely Manager instance cannot be an empty string";
157
-
NSString *constOPTLYLoggerMessagesManagerSyncInit = @"[MANAGER] Synchronously initializing client with project ID%@.";
158
-
NSString *constOPTLYLoggerMessagesManagerAsyncInit = @"[MANAGER] Asynchronously initializing client with project ID%@.";
* Synchronous call that would retrieve the datafile from local cache. If it fails to load from local cache it will return a dummy instance
75
-
*/
76
-
- (nullable OPTLYClient *)initialize;
77
-
78
-
/**
79
-
* Synchronous call that would instantiate the client from the datafile given
80
-
* If the datafile is bad, then the client will try to get the datafile from local cache (if it exists). If it fails to load from local cache it will return a dummy instance
0 commit comments