Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 폰트적용하기
- CSS
- 타입스크립트
- click and drag
- vue.js
- utilty type
- 개발콘텐츠
- 누구나 자료구조와 알고리즘
- typescript
- const 단언문
- returnType
- 레이아웃쪼개기
- 반복줄이기
- NonNullable
- React Native
- 2022
- Chart.js
- 공통컴포넌트
- react
- JS console
- 리액트
- TSDoc
- javascript
- React.js
- 타입좁히기
- 티스토리꾸미기
- reactjs
- 성능최적화
- 제네릭
- 커스텀
Archives
- Today
- Total
몽땅뚝딱 개발자
[React Native] Sentry 적용하기 본문
갖가지 핑계로 미루고 미루다가.....
드뎌 적용,,^^
1. App.tsx를 감싸준다.
import { registerRootComponent } from 'expo'
import 'react-native-gesture-handler'
import * as Sentry from '@sentry/react-native'
import App from './App'
Sentry.init({
dsn: {settings > DNS 정보에서 가져온 key},
tracesSampleRate: 0.5,
})
registerRootComponent(Sentry.wrap(App))
2. 에러가 발생한 부분에 적용한다.
Sentry.captureException의 두번째 파라미터는 hint로 자세한 정보를 보낼 수 있다.
나 같은 경우.. 디바이스 정보 + 사용한 유저의 식별자 id를 보낸다.
import * as Sentry from '@sentry/react-native'
import DeviceInfo from 'react-native-device-info'
// ... 기타 로직
const genError = () => {
try {
throw new Error('Sentry Test')
} catch (e) {
Sentry.captureException(e, {
tags: {
appVersion: DeviceInfo.getVersion(),
deviceInfo: `${DeviceInfo.getModel()} (${DeviceInfo.getBrand()})`,
systemVersion: `${DeviceInfo.getSystemName()} ${DeviceInfo.getSystemVersion()}`,
userId: {유저식별자}
},
})
}
}
'Development > React Native' 카테고리의 다른 글
[React Native] 각 플랫폼 별 버전 관리 (0) | 2024.08.22 |
---|---|
[React Native] firebase 연동하기 (0) | 2024.08.21 |
[React Native] 최적화 / 앱 성능 향상 방법 (작성중) (0) | 2024.08.03 |
[React Native] 토스 결제위젯, 브랜드페이 SDK 연동하기 (0) | 2024.08.03 |
[React Native] 기본 개념 (0) | 2024.06.23 |
Comments