0 purchases
tencent bugly plugin
flutter_bugly_plugin #
Flutter Bugly 插件,只集成了崩溃统计
Bugly版本 #
Android Bugly Version : 4.1.9.3
IOS Bugly Version : 2.6.1
使用 #
dependencies:
tencent_bugly_plugin: ^latest
copied to clipboard
混淆 #
Android需要配置混淆
-dontwarn com.tencent.bugly.**
-keep public class com.tencent.bugly.**{*;}
copied to clipboard
初始化 #
任意区域调用. androidID 与 ios 为必传,其他为可选项。
flutter Error 为flutter错误回调
BuglyPlugin.initBugly(
BuglyConfig(
androidAppId: "your android AppId",
iosAppId: "your ios AppId",
channel: "your channel",
debugMode: true), flutterError: (flutterError) {
});
copied to clipboard
上报自己try catch的异常 #
BuglyPlugin.reportException(String errorInfo,String errorStack)
copied to clipboard
dart触发的错误在bugly的错误界面
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.