This repository was archived by the owner on May 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 251
/
Copy pathApp.js
103 lines (88 loc) · 2.58 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import React, { Component } from "react";
import { AppRegistry, StyleSheet, Text, View } from "react-native";
import {
GoogleAnalyticsTracker,
GoogleAnalyticsSettings,
GoogleTagManager
} from "react-native-google-analytics-bridge";
export default class App extends Component {
render() {
// Recommend you set this much higher in real app! 30 seconds+
// GoogleAnalyticsSettings has static methods and is applied
// for all trackers
GoogleAnalyticsSettings.setDispatchInterval(2);
//GoogleAnalyticsSettings.setDryRun(true);
//GoogleAnalyticsSettings.setOptOut(true);
// The tracker is constructed
let tracker = new GoogleAnalyticsTracker("UA-12345-3");
// You can have multiple trackers
//let tracker2 = new GoogleAnalyticsTracker("UA-12345-3", { demo: 1 });
//tracker2.trackScreenViewWithCustomDimensionValues("Home", { demo: "Yes" });
tracker.trackEvent("testcategory", "Hello iOS");
tracker.trackScreenView("Home");
tracker.trackEvent("testcategory", "Hello iOS", {
label: "notdry",
value: 1
});
tracker.trackTiming("testcategory", 13000, {
label: "notdry",
name: "testduration"
});
tracker.setTrackUncaughtExceptions(true);
tracker.setUser("12345678");
tracker.allowIDFA(true);
tracker.setAnonymizeIp(true);
tracker.trackScreenView("Hello");
GoogleTagManager.openContainerWithId("GTM-NZT48")
.then(() => {
return GoogleTagManager.registerFunctionCallTagHandler(
"awzm_tag",
(fn, payload) => {
console.log("test", fn, payload);
}
);
})
.then(() => {
return GoogleTagManager.registerFunctionCallTagHandler(
"some_other_tag",
(fn, payload) => {
console.log("test2", fn, payload);
}
);
})
.then(reg => {
console.log("Push?: ", reg);
return GoogleTagManager.pushDataLayerEvent({
event: "some_event",
id: 1
});
})
.then(db => {
console.log("db: ", db);
return GoogleTagManager.doubleForKey("db");
})
.catch(err => {
console.log(err);
});
return (
<View style={styles.container}>
<Text style={styles.welcome}>
Welcome to React Native Google Analytics Bridge!
</Text>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: "#F5FCFF"
},
welcome: {
fontSize: 20,
textAlign: "center",
margin: 10
}
});