Merge pull request #134 from jpush/dev

v5.0.3
master
shikk 5 years ago committed by GitHub
commit c8191af902
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,3 +1,5 @@
## 0.5.3
+ 修复一个可能引起崩溃的日志打印代码
## 0.5.2
+ 内部安全策略优化
+ 同步 JPush SDK 版本

@ -16,7 +16,7 @@ dependencies:
// pub 集成
dependencies:
jpush_flutter: 0.5.2
jpush_flutter: 0.5.3
```
### 配置

@ -359,7 +359,6 @@ public class JPushPlugin implements MethodCallHandler {
if (action.equals(JPushInterface.ACTION_REGISTRATION_ID)) {
String rId = intent.getStringExtra(JPushInterface.EXTRA_REGISTRATION_ID);
Log.d("JPushPlugin","on get registration");
Log.d("JPushPlugin", JPushPlugin.instance.getRidCache.toString());
JPushPlugin.transmitReceiveRegistrationId(rId);
} else if (action.equals(JPushInterface.ACTION_MESSAGE_RECEIVED)) {

@ -1,6 +1,6 @@
name: jpush_flutter
description: JIGUANG officially supported JPush Flutter plugin (Android & iOS). 极光推送官方支持的 Flutter 插件Android & iOS(https://www.jiguang.cn).
version: 0.5.2
version: 0.5.3
author: xudong.rao <xudong.rao@outlook.com>
homepage: https://www.jiguang.cn

Loading…
Cancel
Save