File tree Expand file tree Collapse file tree 2 files changed +0
-21
lines changed Expand file tree Collapse file tree 2 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -97,16 +97,6 @@ extern NSString *const kServiceInfoFileType;
97
97
*/
98
98
@property (nonatomic , readonly ) BOOL isMeasurementEnabled;
99
99
100
- /* *
101
- * Whether or not Analytics was enabled in the developer console.
102
- */
103
- @property (nonatomic , readonly ) BOOL isAnalyticsEnabled;
104
-
105
- /* *
106
- * Whether or not SignIn was enabled in the developer console.
107
- */
108
- @property (nonatomic , readonly ) BOOL isSignInEnabled;
109
-
110
100
/* *
111
101
* Whether or not editing is locked. This should occur after `FirebaseOptions` has been set on a
112
102
* `FirebaseApp`.
Original file line number Diff line number Diff line change 36
36
NSString *const kFIRIsAnalyticsCollectionEnabled = @" FIREBASE_ANALYTICS_COLLECTION_ENABLED" ;
37
37
NSString *const kFIRIsAnalyticsCollectionDeactivated = @" FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED" ;
38
38
39
- NSString *const kFIRIsAnalyticsEnabled = @" IS_ANALYTICS_ENABLED" ;
40
- NSString *const kFIRIsSignInEnabled = @" IS_SIGNIN_ENABLED" ;
41
-
42
39
// Library version ID formatted like:
43
40
// @"5" // Major version (one or more digits)
44
41
// @"04" // Minor version (exactly 2 digits)
@@ -487,12 +484,4 @@ - (BOOL)isAnalyticsCollectionDeactivated {
487
484
return [value boolValue ];
488
485
}
489
486
490
- - (BOOL )isAnalyticsEnabled {
491
- return [self .optionsDictionary[kFIRIsAnalyticsEnabled ] boolValue ];
492
- }
493
-
494
- - (BOOL )isSignInEnabled {
495
- return [self .optionsDictionary[kFIRIsSignInEnabled ] boolValue ];
496
- }
497
-
498
487
@end
You can’t perform that action at this time.
0 commit comments