Skip to content

Commit

Permalink
2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasonchenlijian committed May 22, 2018
1 parent 5145570 commit 95a859b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
Binary file renamed FastBLE-2.3.1.jar → FastBLE-2.3.2.jar
Binary file not shown.
Binary file modified FastBLE.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions FastBleLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 22
versionCode 231
versionName "2.3.1"
versionCode 232
versionName "2.3.2"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,9 @@ public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState

bluetoothGatt = gatt;

if (newState == BluetoothProfile.STATE_CONNECTED) {
mainHandler.removeMessages(BleMsg.MSG_CONNECT_OVER_TIME);

if (newState == BluetoothProfile.STATE_CONNECTED) {
Message message = mainHandler.obtainMessage();
message.what = BleMsg.MSG_DISCOVER_SERVICES;
mainHandler.sendMessageDelayed(message, 500);
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ If you want to quickly preview all the functions, you can download APK as a test
<dependency>
<groupId>com.clj.fastble</groupId>
<artifactId>FastBleLib</artifactId>
<version>2.3.1</version>
<version>2.3.2</version>
<type>pom</type>
</dependency>

### Gradle

compile 'com.clj.fastble:FastBleLib:2.3.1'
compile 'com.clj.fastble:FastBleLib:2.3.2'

### Jar

[FastBLE-2.3.1.jar](https://github.com/Jasonchenlijian/FastBle/raw/master/FastBLE-2.3.1.jar)
[FastBLE-2.3.2.jar](https://github.com/Jasonchenlijian/FastBle/raw/master/FastBLE-2.3.2.jar)


## Wiki
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.clj.blesample"
minSdkVersion 14
targetSdkVersion 27
versionCode 231
versionName "2.3.1"
versionCode 232
versionName "2.3.2"
}
buildTypes {
release {
Expand Down

0 comments on commit 95a859b

Please sign in to comment.