Skip to content

Commit

Permalink
Fix generated pom
Browse files Browse the repository at this point in the history
  • Loading branch information
xmaihh committed Jun 23, 2022
1 parent c1c10ad commit db018de
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ allprojects {
2. 在项目Module下的`build.gradle`文件中添加:
```
dependencies {
implementation 'io.github.xmaihh:serialport:2.1'
implementation 'io.github.xmaihh:serialport:2.1.1'
}
```
# 属性支持
Expand Down Expand Up @@ -102,6 +102,10 @@ serialHelper.setStickPackageHelper(AbsStickPackageHelper mStickPackageHelper);
PC端调试工具 [友善串口调试工具](https://github.com/xmaihh/Android-Serialport/raw/master/serial_port_utility_latest.exe)

# 更新日志
## [2.1.1](https://github.com/xmaihh/Android-Serialport)
### 修复
- 修复引用依赖问题见[issues#17](https://github.com/xmaihh/Android-Serialport/issues/17)

## [2.1](https://github.com/xmaihh/Android-Serialport/tree/v2.1)
### 新增
- 添加支持设置接收数据粘包处理,支持设置自定义粘包处理
Expand Down
6 changes: 5 additions & 1 deletion README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ allprojects {
2. To add a dependency to your project, specify a dependency configuration such as implementation in the dependencies block of your module's build.gradle file.
```
dependencies {
implementation 'io.github.xmaihh:serialport:2.1'
implementation 'io.github.xmaihh:serialport:2.1.1'
}
```
# Attribute
Expand Down Expand Up @@ -107,6 +107,10 @@ serialHelper.setStickPackageHelper(AbsStickPackageHelper mStickPackageHelper);
PC-side debugging tools [Serial debugging tool for Win](https://github.com/xmaihh/Android-Serialport/raw/master/serial_port_utility_latest.exe)

# Changelog
## [2.1.1](https://github.com/xmaihh/Android-Serialport)
### Fixed
- Fix bug.[issues#17](https://github.com/xmaihh/Android-Serialport/issues/17)

## [2.1](https://github.com/xmaihh/Android-Serialport/tree/v2.1)
### Added
- Add support settings to receive data sticky packet processing, support for setting custom sticky packet processing
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ dependencies {
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.7'
// implementation project(path: ':serialport')
implementation 'io.github.xmaihh:serialport:2.1'
implementation 'io.github.xmaihh:serialport:2.1.1'
}
7 changes: 4 additions & 3 deletions serialport/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
minSdkVersion 14
targetSdkVersion 32
versionCode 11
versionName "2.1"
versionName "2.1.1"

}

Expand All @@ -27,5 +27,6 @@ android {
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
}
// implementation fileTree(dir: 'libs', include: ['*.jar'])
}

0 comments on commit db018de

Please # to comment.