flutter_bugly

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter bugly

flutter_bugly #



腾讯 Bugly 插件,支持Android/iOS 运营统计、原生异常上报、flutter 异常上报。

一、引入 #
AndroidX #
dependencies:
flutter_bugly: lastVersion
copied to clipboard
Google Play(停止维护,官方在新版本已经优化了合规性问题) #
dependencies:
flutter_bugly_play: lastVersion
copied to clipboard
Android Support #
dependencies:
flutter_bugly:
git:
url: git://github.com/crazecoder/flutter_bugly.git
ref: dev
copied to clipboard
二、项目配置 #
在 android/app/build.gradle 的 android 下加入:
lintOptions {
// 如打包出现Failed to transform libs.jar to match attributes
checkReleaseBuilds false
}
defaultConfig {
ndk {
// 设置支持的 so 库架构 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
abiFilters 'armeabi-v7a'
}
}
copied to clipboard
三、使用 #
import 'package:flutter_bugly/flutter_bugly.dart';

/// 使用 flutter 异常上报
void main() {
FlutterBugly.postCatchedException(() {
// 如果需要 ensureInitialized,请在这里运行。
// WidgetsFlutterBinding.ensureInitialized();
runApp(MyApp());
FlutterBugly.init(
androidAppId: "your android app id",
iOSAppId: "your iOS app id",
);
});
}
copied to clipboard
四、release打包(Android) #
64-bit
flutter build apk --release --target-platform android-arm64
32-bit(目前配合armeabi-v7a可以打出32位64位通用包)
flutter build apk --release --target-platform android-arm
五、支持属性(Android) #
String channel, //自定义渠道标识
bool autoCheckUpgrade = true,//自动检查更新开关
bool autoInit = true,//自动初始化
bool customUpgrade = true, //设置是否使用flutter自定义窗口,false为bugly自带弹窗
int initDelay = 0, //延迟初始化,单位秒

FlutterBugly.setUserId("user id");
FlutterBugly.putUserData(key: "key", value: "value");
int tag = 9527;
FlutterBugly.setUserTag(tag);
copied to clipboard
六、说明(Android) #
异常上报说明
1、flutter异常上报不属于崩溃,所以如需查看 flutter 的异常上报,请在「错误分析」tab页查看

2、iOS的异常上报没有过多测试,如出现问题请 issue

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.