Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-native-google-analytics-bridge
Advanced tools
React Native bridge for using native Google Analytics libraries on iOS and Android
Google Analytics Bridge is built to provide an easy interface to the native Google Analytics libraries on both iOS and Android.
Important: This library requires React Native v0.19+.
The key difference with the native bridge is that you get a lot of the metadata handled automatically by the Google Analytics native library. This will include the device UUID, device model, viewport size, OS version etc.
You will only have to send in a few parameteres when tracking, e.g:
import GoogleAnalytics from 'react-native-google-analytics-bridge';
GoogleAnalytics.setTrackerId('UA-12345-1');
GoogleAnalytics.trackScreenView('Home');
GoogleAnalytics.trackEvent('testcategory', 'testaction');
rnpm install react-native-google-analytics-bridge
With this, rnpm will do most of the heavy lifting for linking, but for iOS you will still need to do step 5 from the manual installation guide below.
npm install --save react-native-google-analytics-bridge
Add Files to <your project>
.node_modules
➜ react-native-google-analytics-bridge
➜ ios
➜ RCTGoogleAnalyticsBridge
and add the RCTGoogleAnalyticsBridge.xcodeproj
file.Libraries
➜ RCTGoogleAnalyticsBridge.xcodeproj
➜ right-click google-analytics-lib
. Here you need to Add files to ..
, and add libAdIdAccess.a
from the google-analytics-lib
directory. This directory is located in the same node_modules
path as in step 3.Make sure you have the following SDK packages installed in the Android SDK Manager:
Consult this guide if you are unsure how to do this.
npm install --save react-native-google-analytics-bridge
android/settings.gradle
...
include ':react-native-google-analytics-bridge', ':app'
project(':react-native-google-analytics-bridge').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-google-analytics-bridge/android')
android/app/build.gradle
...
dependencies {
...
compile project(':react-native-google-analytics-bridge')
}
MainApplication.java
// Step 1; import package:
import com.idehub.GoogleAnalyticsBridge.GoogleAnalyticsBridgePackage;
public class MainActivity extends ReactActivity {
...
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
// Step 2; register package:
new GoogleAnalyticsBridgePackage()
);
}
}
Some people have had problems being hit with Unknown source file : com.android.dex.DexException: Multiple dex files define Lcom/google/android/gms/internal/zzmu;
after installing this (or similar modules).
This might be because you are using another module which also uses play-services
, but targets a different version of play-services
. In the build.gradle
-file of this module, we target com.google.android.gms:play-services-analytics:8.+
. In other words, we try to use the latest (8.x.x) version of play-services
.
If some other module is targetting a previous version, say 8.3.0, then adding the following to your (React Native-project) build.gradle
may be helpful:
compile("com.google.android.gms:play-services-analytics:8.3.0"){
force = true
}
That should force the app to compile the 8.3.0 version of the dependency my module uses. Obviously, this might not be a solution if several modules are depending on conflicting versions.
I would recommend other module authors which also depend on play-services
to target 8.+
instead of a specific minor version.
Important: Call once on app startup to set the tracker id for all subsequent static calls.
import GoogleAnalytics from 'react-native-google-analytics-bridge';
GoogleAnalytics.setTrackerId('UA-12345-1')
Important: Calling this will also set the "current view" for other calls. So events tracked will be tagged as having occured on the current view, Home
in this example. This means it is important to track navigation, especially if events can fire on different views.
See the Google Analytics docs for more info
GoogleAnalytics.trackScreenView('Home')
See the Google Analytics docs for more info.
GoogleAnalytics.trackEvent('testcategory', 'testaction');
// or
GoogleAnalytics.trackEvent('testcategory', 'testaction', {label: 'v1.0.3', value: 22});
See the Google Analytics docs for more info.
GoogleAnalytics.trackTiming('testcategory', 13000);
// or
GoogleAnalytics.trackTiming('testcategory', 13000, {name: 'loadList', label: 'v1.0.3'});
See the Google Analytics docs for more info.
GoogleAnalytics.trackPurchaseEvent({
id: 'P12345',
name: 'Android Warhol T-Shirt',
category: 'Apparel/T-Shirts',
brand: 'Google',
variant: 'Black',
price: 29.20,
quantity: 1,
couponCode: 'APPARELSALE'
}, {
id: 'T12345',
affiliation: 'Google Store - Online',
revenue: 37.39,
tax: 2.85,
shipping: 5.34,
couponCode: 'SUMMER2013'
}, 'Ecommerce', 'Purchase');
same as trackPurchaseEvent but instead of one product you can provide an Array of products
See the Google Analytics docs for more info.
try {
...
} catch(error) {
GoogleAnalytics.trackException(error.message, false);
}
See the Google Analytics docs for more info.
GoogleAnalytics.trackSocialInteraction('Twitter', 'Post');
Tracks a screen view with one or more customDimensionValues. See the Google Analytics docs for more info.
GoogleAnalytics.trackScreenViewWithCustomDimensionValues('Home', {'1':'premium', '5':'foo'});
Tracks an event with one or more customDimensionValues. See the Google Analytics docs for more info.
GoogleAnalytics.trackEventWithCustomDimensionValues('testcategory', 'testaction', {label: 'v1.0.3', value: 22}, {'1':'premium', '5':'foo'});
See the Google Analytics for more info.
GoogleAnalytics.setUser('12345678');
true
.Also called advertising identifier collection, and is used for advertising features.
Important: For iOS you can only use this method if you have done the optional step 6 from the installation guide. Only enable this (and link the appropriate libraries) if you plan to use advertising features in your app, or else your app may get rejected from the AppStore.
See the Google Analytics for more info.
GoogleAnalytics.allowIDFA(true);
dryRun
flag should be enabled or not.When enabled 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.
GoogleAnalytics.setDryRun(true);
Events, screen views, etc, are sent in batches to your tracker. This function allows you to configure how often (in seconds) the batches are sent to your tracker. Recommended to keep this around 20-120 seconds to preserve battery and network traffic. This is set to 20 seconds by default.
GoogleAnalytics.setDispatchInterval(30);
Sets if uncaught exceptions should be tracked. This is enabled by default.
GoogleAnalytics.setTrackUncaughtExceptions(true);
Sets if AnonymizeIp is enabled. This is disabled by default. If enabled the last octet of the IP address will be removed.
GoogleAnalytics.setAnonymizeIp(true);
Sets if OptOut is active and disables Google Analytics. This is disabled by default. Note: This has to be set each time the App starts.
GoogleAnalytics.setOptOut(true);
Overrides the app name logged in Google Analytics. The Bundle name is used by default. Note: This has to be set each time the App starts.
GoogleAnalytics.setAppName('someAppName');
The GoogleTagManager
type is available at GoogleAnalytics.GoogleTagManager
. If you want to use it alongside GoogleAnalytics
:
import GoogleAnalytics, { GoogleTagManager } from 'react-native-google-analytics-bridge';
GoogleTagManager.openContainerWithId('GT-NZT48')
.then(() => GoogleTagManager.stringForKey('pack'))
.then((str) => console.log('Pack: ', str));
All methods returns a Promise
.
Important: Call once to open the container for all subsequent static calls.
GoogleTagManager.openContainerWithId('GT-NZT48')
.then((..) => ..)
Retrieves a string with the given key from the opened container.
GoogleTagManager.stringForKey('key').then((val) => console.log(val));
Retrieves a boolean value with the given key from the opened container.
GoogleTagManager.boolForKey('key').then((val) => console.log(val));
Retrieves a number with the given key from the opened container.
GoogleTagManager.doubleForKey('key').then((val) => console.log(val));
Setting up A/B-testing requires setup of containers in Google Tag Manager, and connecting this with Goals/Experiments in Google Analytics.
This blog post details how to do this. This guide from Google will also prove helpful (and is referenced in the aforementioned blog post).
Then you can use our Google Tag Manager implementation to pull values out of the container, and track events in Google Analytics in order to complete "goals".
In this way, the different containers (A/B) the user is given, will be linked to whether or not they accomplish the given goal.
There is a divergence in how the iOS and Android versions of the native library handles logging.
For Android you can check the GA logs with your favorite terminal by using adb logcat
.
For iOS there is a logger in the internal library that writes events to the XCode output window.
In order to control the logLevel
you can add an item in your Info.plist
with the key GAILogLevel
. The value you use is a number which corresponds to your desired log-level:
FAQs
React Native bridge for using native Google Analytics libraries on iOS and Android
We found that react-native-google-analytics-bridge demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.