FIRAnalytics.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. #import <Foundation/Foundation.h>
  2. #import "FIREventNames.h"
  3. #import "FIRParameterNames.h"
  4. #import "FIRUserPropertyNames.h"
  5. NS_ASSUME_NONNULL_BEGIN
  6. /// The top level Firebase Analytics singleton that provides methods for logging events and setting
  7. /// user properties. See <a href="http://goo.gl/gz8SLz">the developer guides</a> for general
  8. /// information on using Firebase Analytics in your apps.
  9. ///
  10. /// @note The Analytics SDK uses SQLite to persist events and other app-specific data. Calling
  11. /// certain thread-unsafe global SQLite methods like `sqlite3_shutdown()` can result in
  12. /// unexpected crashes at runtime.
  13. NS_SWIFT_NAME(Analytics)
  14. @interface FIRAnalytics : NSObject
  15. /// Logs an app event. The event can have up to 25 parameters. Events with the same name must have
  16. /// the same parameters. Up to 500 event names are supported. Using predefined events and/or
  17. /// parameters is recommended for optimal reporting.
  18. ///
  19. /// The following event names are reserved and cannot be used:
  20. /// <ul>
  21. /// <li>ad_activeview</li>
  22. /// <li>ad_click</li>
  23. /// <li>ad_exposure</li>
  24. /// <li>ad_impression</li>
  25. /// <li>ad_query</li>
  26. /// <li>adunit_exposure</li>
  27. /// <li>app_clear_data</li>
  28. /// <li>app_remove</li>
  29. /// <li>app_update</li>
  30. /// <li>error</li>
  31. /// <li>first_open</li>
  32. /// <li>in_app_purchase</li>
  33. /// <li>notification_dismiss</li>
  34. /// <li>notification_foreground</li>
  35. /// <li>notification_open</li>
  36. /// <li>notification_receive</li>
  37. /// <li>os_update</li>
  38. /// <li>session_start</li>
  39. /// <li>user_engagement</li>
  40. /// </ul>
  41. ///
  42. /// @param name The name of the event. Should contain 1 to 40 alphanumeric characters or
  43. /// underscores. The name must start with an alphabetic character. Some event names are
  44. /// reserved. See FIREventNames.h for the list of reserved event names. The "firebase_",
  45. /// "google_", and "ga_" prefixes are reserved and should not be used. Note that event names are
  46. /// case-sensitive and that logging two events whose names differ only in case will result in
  47. /// two distinct events. To manually log screen view events, use the `screen_view` event name.
  48. /// @param parameters The dictionary of event parameters. Passing nil indicates that the event has
  49. /// no parameters. Parameter names can be up to 40 characters long and must start with an
  50. /// alphabetic character and contain only alphanumeric characters and underscores. Only NSString
  51. /// and NSNumber (signed 64-bit integer and 64-bit floating-point number) parameter types are
  52. /// supported. NSString parameter values can be up to 100 characters long. The "firebase_",
  53. /// "google_", and "ga_" prefixes are reserved and should not be used for parameter names.
  54. + (void)logEventWithName:(NSString *)name
  55. parameters:(nullable NSDictionary<NSString *, id> *)parameters
  56. NS_SWIFT_NAME(logEvent(_:parameters:));
  57. /// Sets a user property to a given value. Up to 25 user property names are supported. Once set,
  58. /// user property values persist throughout the app lifecycle and across sessions.
  59. ///
  60. /// The following user property names are reserved and cannot be used:
  61. /// <ul>
  62. /// <li>first_open_time</li>
  63. /// <li>last_deep_link_referrer</li>
  64. /// <li>user_id</li>
  65. /// </ul>
  66. ///
  67. /// @param value The value of the user property. Values can be up to 36 characters long. Setting the
  68. /// value to nil removes the user property.
  69. /// @param name The name of the user property to set. Should contain 1 to 24 alphanumeric characters
  70. /// or underscores and must start with an alphabetic character. The "firebase_", "google_", and
  71. /// "ga_" prefixes are reserved and should not be used for user property names.
  72. + (void)setUserPropertyString:(nullable NSString *)value forName:(NSString *)name
  73. NS_SWIFT_NAME(setUserProperty(_:forName:));
  74. /// Sets the user ID property. This feature must be used in accordance with
  75. /// <a href="https://www.google.com/policies/privacy">Google's Privacy Policy</a>
  76. ///
  77. /// @param userID The user ID to ascribe to the user of this app on this device, which must be
  78. /// non-empty and no more than 256 characters long. Setting userID to nil removes the user ID.
  79. + (void)setUserID:(nullable NSString *)userID;
  80. /// This method was deprecated in Firebase 6.29.0.
  81. ///
  82. /// Sets the current screen name, which specifies the current visual context in your app. This helps
  83. /// identify the areas in your app where users spend their time and how they interact with your app.
  84. /// Must be called on the main thread.
  85. ///
  86. /// Note that screen reporting is enabled automatically and records the class name of the current
  87. /// UIViewController for you without requiring you to call this method. The class name can
  88. /// optionally be overridden by calling this method in the viewDidAppear callback of your
  89. /// UIViewController and specifying the screenClassOverride parameter.
  90. /// `setScreenName:screenClass:` must be called after `[super viewDidAppear:]`.
  91. ///
  92. /// If your app does not use a distinct UIViewController for each screen, you should call this
  93. /// method and specify a distinct screenName each time a new screen is presented to the user.
  94. ///
  95. /// The screen name and screen class remain in effect until the current UIViewController changes or
  96. /// a new call to setScreenName:screenClass: is made.
  97. ///
  98. /// @warning If you override `viewDidAppear:` in your UIViewController but do not call
  99. /// `[super viewDidAppear:]`, that screen class will not be tracked.
  100. ///
  101. /// @param screenName The name of the current screen. Should contain 1 to 100 characters. Set to nil
  102. /// to clear the current screen name.
  103. /// @param screenClassOverride The name of the screen class. Should contain 1 to 100 characters. By
  104. /// default this is the class name of the current UIViewController. Set to nil to revert to the
  105. /// default class name.
  106. + (void)setScreenName:(nullable NSString *)screenName
  107. screenClass:(nullable NSString *)screenClassOverride
  108. DEPRECATED_MSG_ATTRIBUTE(
  109. "Use +[FIRAnalytics logEventWithName:kFIREventScreenView parameters:] instead.");
  110. /// Sets whether analytics collection is enabled for this app on this device. This setting is
  111. /// persisted across app sessions. By default it is enabled.
  112. ///
  113. /// @param analyticsCollectionEnabled A flag that enables or disables Analytics collection.
  114. + (void)setAnalyticsCollectionEnabled:(BOOL)analyticsCollectionEnabled;
  115. /// Sets the interval of inactivity in seconds that terminates the current session. The default
  116. /// value is 1800 seconds (30 minutes).
  117. ///
  118. /// @param sessionTimeoutInterval The custom time of inactivity in seconds before the current
  119. /// session terminates.
  120. + (void)setSessionTimeoutInterval:(NSTimeInterval)sessionTimeoutInterval;
  121. /// The unique ID for this instance of the application.
  122. + (NSString *)appInstanceID;
  123. /// Clears all analytics data for this instance from the device and resets the app instance ID.
  124. /// FIRAnalyticsConfiguration values will be reset to the default values.
  125. + (void)resetAnalyticsData;
  126. /// Adds parameters that will be set on every event logged from the SDK, including automatic ones.
  127. /// The values passed in the parameters dictionary will be added to the dictionary of default event
  128. /// parameters. These parameters persist across app runs. They are of lower precedence than event
  129. /// parameters, so if an event parameter and a parameter set using this API have the same name, the
  130. /// value of the event parameter will be used. The same limitations on event parameters apply to
  131. /// default event parameters.
  132. ///
  133. /// @param parameters Parameters to be added to the dictionary of parameters added to every event.
  134. /// They will be added to the dictionary of default event parameters, replacing any existing
  135. /// parameter with the same name. Valid parameters are NSString and NSNumber (signed 64-bit
  136. /// integer and 64-bit floating-point number). Setting a key's value to [NSNull null] will clear
  137. /// that parameter. Passing in a nil dictionary will clear all parameters.
  138. + (void)setDefaultEventParameters:(nullable NSDictionary<NSString *, id> *)parameters;
  139. @end
  140. NS_ASSUME_NONNULL_END