Skip to content

Bump FirebaseAnalyticsInterop version #2315

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Example/DynamicLinks/Tests/FIRDLScionLoggingTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,20 @@ - (void)setUserPropertyWithOrigin:(nonnull NSString *)origin
name:(nonnull NSString *)name
value:(nonnull id)value {
}

- (void)checkLastNotificationForOrigin:(nonnull NSString *)origin
queue:(nonnull dispatch_queue_t)queue
callback:(nonnull void (^)(NSString *_Nullable))
currentLastNotificationProperty {
}

- (void)registerAnalyticsListener:(nonnull id<FIRAnalyticsInteropListener>)listener
withOrigin:(nonnull NSString *)origin {
}

- (void)unregisterAnalyticsListenerWithOrigin:(nonnull NSString *)origin {
}

@end

@interface FIRDLScionLoggingTest : XCTestCase
Expand Down
14 changes: 14 additions & 0 deletions Example/Messaging/Tests/FIRMessagingAnalyticsTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,20 @@ - (NSInteger)maxUserProperties:(nonnull NSString *)origin {
- (void)setConditionalUserProperty:(nonnull FIRAConditionalUserProperty *)conditionalUserProperty {
}

- (void)checkLastNotificationForOrigin:(nonnull NSString *)origin
queue:(nonnull dispatch_queue_t)queue
callback:(nonnull void (^)(NSString *_Nullable))
currentLastNotificationProperty {
}

- (void)registerAnalyticsListener:(nonnull id<FIRAnalyticsInteropListener>)listener
withOrigin:(nonnull NSString *)origin {
}

- (void)unregisterAnalyticsListenerWithOrigin:(nonnull NSString *)origin {
}


@end

@interface FIRMessagingAnalytics (ExposedForTest)
Expand Down
2 changes: 1 addition & 1 deletion FirebaseAnalyticsInterop.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'FirebaseAnalyticsInterop'
s.version = '1.1.0'
s.version = '1.2.0'
s.summary = 'Interfaces that allow other Firebase SDKs to use Analytics functionality.'

s.description = <<-DESC
Expand Down