Skip to content

Instantly share code, notes, and snippets.

@kuyazee
Created June 27, 2018 14:19
Show Gist options
  • Save kuyazee/fbcea431b73415c41af0be0fca242b80 to your computer and use it in GitHub Desktop.
Save kuyazee/fbcea431b73415c41af0be0fca242b80 to your computer and use it in GitHub Desktop.
public protocol AnalyticsServiceProtocol {
/// This will be called within AppDelegate application:didFinishLaunchingWithOptions: method
/// In this method, you should initialize the SDK.
func initialize(application: UIApplication, launchOptions: [UIApplicationLaunchOptionsKey: Any]?)
/// This will actually track events in the app.
func send(event: AnalyticsEventProtocol)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment