需求:之前使用的是tencent的bugly做为崩溃和异常监控,好像是要开始收费了,计划使用开源免费的sentry进行替换。
步骤:
1.修改工程文件
app/build.gradle
apply plugin: 'io.sentry.android.gradle'
sentry {
// 禁用或启用ProGuard的自动配置
autoProguardConfig false
// 启用或禁用自动上传映射文件
autoUpload true
}
dependencies
implementation 'io.sentry:sentry-android:1.7.27'
// this dependency is not required if you are already using your own
// slf4j implementation
implementation 'org.slf4j:slf4j-nop:1.7.25'
AndroidManifest.xml
<uses-sdk tools:overrideLibrary="io.sentry.android"/>
project/build.gradle
dependencies {
classpath 'io.sentry:sentry-android-gradle-plugin:1.7.33'
}
Application
public class MyApp extends Application {
// 初始化sentry配置,这里其实和上一步的io.sentry.dsn在AndroidManifest里的配置重复, 属于手动配置和自动配置两种
Sentry.init("dsn链接", new AndroidSentryClientFactory(getApplicationContext()));
CrashHandler.getInstance(getApplicationContext());
}
说明: 最开始把dsn配置在AndroidManifest中测试一直没有成功,后来改成这种在代码里配置才好了
dsn查看
异常上报
这应该注册账号后本地部署的一个项目,这里直接使用了。