Skip to content

Releases: segment-integrations/analytics-ios-integration-amplitude

3.4.0

16 Feb 21:59
Compare
Choose a tag to compare

3.3.2

15 Jul 19:00
Compare
Choose a tag to compare

Bump the Amplitude SDK version to 8.3.0+
Bump deployment target to iOS 11

3.3.1

05 May 00:15
Compare
Choose a tag to compare
  • Bump the Amplitude SDK version to 8.0+

Version 3.3.0

15 Apr 22:24
Compare
Choose a tag to compare
  • Fix issue while reading values from SEGGroupPayload in group() call.

  • Fix [Amplitude setGroup:groupName:] call in SEGAmplitudeIntegration.

  • Fix issue when reset is called. Reinitialize identify otherwise old traits will continue through new identify calls.

  • Check if imports exist without segment framework.

  • Add tvOS deployment target to podspec.

  • Remove unnecessary platform specifier from Podspec.

Version 3.2.3

29 Oct 22:50
Compare
Choose a tag to compare

Fixes a bug in import headers to support iOS Analytics 4.x

3.2.2

14 Oct 23:00
Compare
Choose a tag to compare

Updates SEGAnalytics imports to support new namespacing introduced in Analytics v4.x

3.2.1

23 Sep 20:27
Compare
Choose a tag to compare
  • Fixed compile issue w/ 7.0.1 build of Amplitude-iOS
  • Added mechanism to allow idfa and location services to be configured in Amplitude-iOS.

If IDFA or Location Services are needed, use SEGAmplitudeIntegrationFactory's new instanceWithSetupBlock method.

Example:

    SEGAmplitudeIntegrationFactory *factory = [SEGAmplitudeIntegrationFactory instanceWithSetupBlock:^{
        amplitude.adSupportBlock = ^{
            return [[ASIdentifierManager sharedManager] advertisingIdentifier];
        };
        amplitude.locationInfoBlock = ^{
            return @{
                @"lat" : @37.7,
                @"lng" : @122.4
            };
        };
    }];
    ...
    [analyticsConfiguration use:factory];

3.2.0

16 Jul 00:10
Compare
Choose a tag to compare
  • Updated Carthage to use Analytics 4.0.x.
  • Moved Carthage files to proper location.

3.1.0

14 Jul 17:19
Compare
Choose a tag to compare
  • Removed version pinning for Amplitude.
  • Moved to Amplitude pod (5.2.1), away from Amplitude-iOS pod.

3.0.2

04 Jun 18:07
8592bcc
Compare
Choose a tag to compare
Remove analytics version pinning.