1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Add haptics and analytics

This commit is contained in:
Zhiyuan Zheng
2020-12-30 14:33:33 +01:00
parent e765a8fd7c
commit 5473fcb770
27 changed files with 186 additions and 148 deletions

View File

@ -0,0 +1,10 @@
import * as Analytics from 'expo-firebase-analytics'
import * as Sentry from 'sentry-expo'
const analytics = (event: string, params?: { [key: string]: string }) => {
Analytics.logEvent(event, params).catch(error =>
Sentry.Native.captureException(error)
)
}
export default analytics