Skip to content

Commit 94cfdd2

Browse files
committed
Update example app setup options
It's useful to enable tracking of lifecycle events in the example app, because those are disabled by default and most people will want these enabled. Hopefully having them explicitly set in the example app will make it clear to people that it needs to be done manually.
1 parent c1238c8 commit 94cfdd2

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

example/index.js

+7-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,13 @@ import Analytics, { AnalyticsConstants } from 'react-native-analytics-segment-io
99

1010
class example extends Component {
1111
componentDidMount() {
12-
Analytics.setup('add-segment-key-here', { [AnalyticsConstants.enableAdvertisingTracking]: true, [AnalyticsConstants.debug]: true })
13-
.then(() => {
14-
Analytics.track('test', {})
15-
})
12+
Analytics.setup('add-segment-key-here', {
13+
[AnalyticsConstants.trackApplicationLifecycleEvents]: true,
14+
[AnalyticsConstants.debug]: true
15+
})
16+
.then(() => {
17+
Analytics.track('test', {})
18+
})
1619
}
1720

1821
render() {

0 commit comments

Comments
 (0)