File tree Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Expand file tree Collapse file tree 3 files changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,20 @@ - (void)setUserPropertyWithOrigin:(nonnull NSString *)origin
74
74
name : (nonnull NSString *)name
75
75
value : (nonnull id )value {
76
76
}
77
+
78
+ - (void )checkLastNotificationForOrigin : (nonnull NSString *)origin
79
+ queue : (nonnull dispatch_queue_t )queue
80
+ callback : (nonnull void (^)(NSString *_Nullable))
81
+ currentLastNotificationProperty {
82
+ }
83
+
84
+ - (void )registerAnalyticsListener : (nonnull id <FIRAnalyticsInteropListener>)listener
85
+ withOrigin : (nonnull NSString *)origin {
86
+ }
87
+
88
+ - (void )unregisterAnalyticsListenerWithOrigin : (nonnull NSString *)origin {
89
+ }
90
+
77
91
@end
78
92
79
93
@interface FIRDLScionLoggingTest : XCTestCase
Original file line number Diff line number Diff line change @@ -97,6 +97,20 @@ - (NSInteger)maxUserProperties:(nonnull NSString *)origin {
97
97
- (void )setConditionalUserProperty : (nonnull FIRAConditionalUserProperty *)conditionalUserProperty {
98
98
}
99
99
100
+ - (void )checkLastNotificationForOrigin : (nonnull NSString *)origin
101
+ queue : (nonnull dispatch_queue_t )queue
102
+ callback : (nonnull void (^)(NSString *_Nullable))
103
+ currentLastNotificationProperty {
104
+ }
105
+
106
+ - (void )registerAnalyticsListener : (nonnull id <FIRAnalyticsInteropListener>)listener
107
+ withOrigin : (nonnull NSString *)origin {
108
+ }
109
+
110
+ - (void )unregisterAnalyticsListenerWithOrigin : (nonnull NSString *)origin {
111
+ }
112
+
113
+
100
114
@end
101
115
102
116
@interface FIRMessagingAnalytics (ExposedForTest)
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'FirebaseAnalyticsInterop'
3
- s . version = '1.1 .0'
3
+ s . version = '1.2 .0'
4
4
s . summary = 'Interfaces that allow other Firebase SDKs to use Analytics functionality.'
5
5
6
6
s . description = <<-DESC
You can’t perform that action at this time.
0 commit comments