Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Releases: idehub/react-native-google-analytics-bridge

trackTiming

08 Feb 18:31
Compare
Choose a tag to compare

Track user timings, which allows you to measure things like resource load times, etc.

Thanks to @hedblad for providing the implementation of this feature!

GoogleAnalytics.trackTiming('testcategory', 13000, {name: 'loadList', label: 'v1.0.3'});

Ecommerce tracking + several minor features

26 Jan 18:27
Compare
Choose a tag to compare

Several new methods are now available;

  • trackPurchaseEvent
  • trackException
  • trackSocialInteraction
  • setUser
  • allowIDFA

Thanks to @gnestor for helping out!

Target iOS 7.0 and enabled bitcode

07 Jan 18:39
Compare
Choose a tag to compare

This release includes:

  • Setting the deployment target to iOS 7.0 (default for React Native projects).
  • Enabling bitcode

The Google Analytics iOS SDK was also upgraded to 3.15 to support bitcode.

dryRun flag

02 Jan 21:35
Compare
Choose a tag to compare

This release includes the ability to set if the dryRun flag should be enabled or not.

When enabled, GoogleAnalytics.setDryRun(true), the native library prevents any data from being sent to Google Analytics. This allows you to test or debug the implementation, without your test data appearing in your Google Analytics reports.

Stable first release

29 Dec 18:25
Compare
Choose a tag to compare

Includes the following methods;

  • trackScreenView(screenName)
  • trackEvent(category, action, optionalValues = {})