Skip to content

Commit ec2717d

Browse files
committed
0.3.2+1
1 parent 5366ae1 commit ec2717d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.3.2+1
2+
* flutterPluginBinding调整至onDetachedFromEngine释放。fix[#85](https://github.com/crazecoder/flutter_bugly/issues/85) @[shingohu](https://github.com/shingohu)
13
## 0.3.2
24
* dartfmt
35
* 修复部分场景不上报的问题

lib/src/flutter_bugly.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ class FlutterBugly {
104104
///设置关键数据,随崩溃信息上报
105105
static Future<Null> putUserData(
106106
{required String key, required String value}) async {
107-
assert(key != null && key.isNotEmpty);
108-
assert(value != null && value.isNotEmpty);
107+
assert(key.isNotEmpty);
108+
assert(value.isNotEmpty);
109109
Map<String, Object> map = {
110110
"key": key,
111111
"value": value,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_bugly
22
description: Flutter plugin for Tencent Bugly, Crash monitoring, Crash analysis, exception reporting, application update, data statistics, etc
3-
version: 0.3.2
3+
version: 0.3.2+1
44
author: crazecoder <[email protected]>
55
homepage: https://github.com/crazecoder/flutter_bugly
66

0 commit comments

Comments
 (0)