All Versions
68
Latest Version
Avg Release Cycle
38 days
Latest Release
1043 days ago

Changelog History
Page 7

  • v3.0.4 Changes

    May 01, 2016
    • Use NSUserDefaults for persistence where possible.
    • Fix how we detect whether the device is offline or not.
    • Correctly send context.library.version.
  • v3.0.4-alpha Changes

    • Adds API to track notification lifecycle.
  • v3.0.3 Changes

    November 12, 2015
    • Deliver application lifecycle and push events synchronously to integrations when possible.
  • v3.0.3-alpha Changes

    • Fixes bug where traits in identify and group were ignored.
  • v3.0.2 Changes

    July 12, 2015
    • Add ability to set a custom anonymous ID.
  • v3.0.2-alpha Changes

    November 10, 2015
    • Fixes pod lib lint warnings.
  • v3.0.1 Changes

    • Fix bug with overriding userId in alias calls (this bug would manifest when trying to alias anonymous users).
  • v3.0.0 Changes

    • v3 Release. This release restructures bundled integrations, which requires a few additional steps.

    ➕ Add the integration dependencies.

    pod `Segment`
    pod `Segment-Bugsnag`
    pod `Segment-Branch`
    ...
    

    🔧 Register them in your configuration when you initialize the SDK.

    SEGAnalyticsConfiguration *config = [SEGAnalyticsConfiguration configurationWithWriteKey:@"YOUR_WRITE_KEY"];
    
    // Add any of your bundled integrations.
    config use:[SEGGoogleAnalyticsIntegrationFactory instance];
    config use:[BNCBranchIntegrationFactory instance];
    ...
    
    [SEGAnalytics setupWithConfiguration:config];