This repository was archived by the owner on May 21, 2019. It is now read-only.
Releases: idehub/react-native-google-analytics-bridge
Releases · idehub/react-native-google-analytics-bridge
trackTiming
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
Several new methods are now available;
- trackPurchaseEvent
- trackException
- trackSocialInteraction
- setUser
- allowIDFA
Thanks to @gnestor for helping out!
Target iOS 7.0 and enabled bitcode
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
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
Includes the following methods;
- trackScreenView(screenName)
- trackEvent(category, action, optionalValues = {})