Skip to content

Commit 5b7a9d0

Browse files
committed
refactor:
1. 将IPCServiceMananger改成public; 2. 修复跨进程事件HAS_DATA标记问题(进程初始化时序不对时出现序列化和反序列化不对称问题); 3. 版本升级到1.3.7;
1 parent adc7568 commit 5b7a9d0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# IPCInvoker
22

33
[![license](http://img.shields.io/badge/license-Apache2.0-brightgreen.svg?style=flat)](https://github.com/AlbieLiang/IPCInvoker/blob/master/LICENSE)
4-
[![Release Version](https://img.shields.io/badge/release-1.3.6-red.svg)](https://github.com/AlbieLiang/IPCInvoker/releases)
5-
[![wiki](https://img.shields.io/badge/wiki-1.3.6-red.svg)](https://github.com/AlbieLiang/IPCInvoker/wiki)
4+
[![Release Version](https://img.shields.io/badge/release-1.3.7-red.svg)](https://github.com/AlbieLiang/IPCInvoker/releases)
5+
[![wiki](https://img.shields.io/badge/wiki-1.3.7-red.svg)](https://github.com/AlbieLiang/IPCInvoker/wiki)
66
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/AlbieLiang/IPCInvoker/pulls)
77

88

config.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ext {
2828
]
2929

3030
bintrayConfig = [
31-
version : '1.3.6',
31+
version : '1.3.7',
3232
siteUrl : 'https://github.com/AlbieLiang/IPCInvoker', // 项目的主页
3333
gitUrl : 'https://github.com/AlbieLiang/IPCInvoker.git', // Git仓库的url
3434
licenseName : 'The Apache Software License, Version 2.0',

ipc-invoker/src/main/java/cc/suitalk/ipcinvoker/IPCServiceManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Created by albieliang on 2017/5/20.
2727
*/
2828

29-
class IPCServiceManager {
29+
public class IPCServiceManager {
3030

3131
private static volatile IPCServiceManager sMgr;
3232

ipc-invoker/src/main/java/cc/suitalk/ipcinvoker/event/WrapperParcelable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void writeToParcel(Parcel dest, int flags) {
5858
return;
5959
}
6060
}
61-
dest.writeInt(HAS_DATA);
61+
dest.writeInt(NO_DATA);
6262
}
6363

6464
void readFromParcel(Parcel in) {

0 commit comments

Comments
 (0)