本文整理汇总了TypeScript中react-native-sentry.Sentry.config方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Sentry.config方法的具体用法?TypeScript Sentry.config怎么用?TypeScript Sentry.config使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类react-native-sentry.Sentry
的用法示例。
在下文中一共展示了Sentry.config方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
import { Sentry } from 'react-native-sentry';
import CodePush from 'react-native-code-push';
import config from 'config';
if (!__DEV__ && config.SENTRY_DSN) {
// Install sentry
Sentry.config(config.SENTRY_DSN).install();
// Set Sentry CodePush metadata
CodePush.getUpdateMetadata()
.then((update) => {
if (update) {
Sentry.setVersion(`${update.appVersion}-codepush:${update.label}`);
}
});
}
示例2:
import { NativeModules } from "react-native"
const { Emission } = NativeModules
import { Sentry } from "react-native-sentry"
// AREmission sets this to "" if not configured, which is falsy in JS so this conditional is fine.
if (Emission.sentryDSN) {
Sentry.config(Emission.sentryDSN).install()
}