-
Notifications
You must be signed in to change notification settings - Fork 3
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
Analytics plugins #26
Conversation
@@ -0,0 +1,15 @@ | |||
// | |||
// File.swift |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change the filename to DeepLinkManagerProtocol.swift
@@ -0,0 +1,27 @@ | |||
// | |||
// File.swift |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change the filename to DeepLinkManagerProtocolMock.swift
|
||
import Foundation | ||
|
||
public class DeepLinkManagerProtocolMock: DeepLinkManagerProtocol { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it for tests or users?
Can we remove public
to hide it from plugin users if it's for tests?
// | ||
|
||
import Foundation | ||
import UIKit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this import for protocol?
Added needed protocols for analytics plugins implementation:
moved PushNotificationsProvider protocol to Foundation
moved PushNotificationsListener protocol to Foundation
moved DeepLinkManagerProtocol protocol to Foundation
added extension for Error