Skip to content

Commit

Permalink
Release 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
whilu committed Feb 6, 2017
1 parent f408a7d commit 976aafb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ A library to make classic bluetooth or BLE easier to use in Android.

```groovy
dependencies {
compile 'co.lujun:lmbluetoothsdk:1.0.2'
compile 'co.lujun:lmbluetoothsdk:1.0.4'
}
```

Expand All @@ -26,7 +26,7 @@ dependencies {
<dependency>
<groupId>co.lujun</groupId>
<artifactId>lmbluetoothsdk</artifactId>
<version>1.0.2</version>
<version>1.0.4</version>
<packaging>aar</packaging>
</dependency>
```
Expand Down Expand Up @@ -191,6 +191,9 @@ Manufacturing bluetooth connection status, there are 6 states in the class.
| STATE_GOT_CHARACTERISTICS | 6 | got all characteristics

## Change logs
###1.0.4(2017-2-6)
- bug fix

###1.0.2(2016-3-15)
- Add ```RSSI``` value for scan callback
- Add ```STATE_GOT_CHARACTERISTICS``` state for got all characteristics
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'

// NOTE: Do not place your application dependencies here; they belong
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Aug 19 18:14:54 CDT 2016
#Mon Feb 06 22:54:24 CST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
8 changes: 4 additions & 4 deletions lmbluetoothsdk/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25.0.0"

defaultConfig {
minSdkVersion 9
targetSdkVersion 23
versionCode 103
versionName "1.0.3"
versionCode 104
versionName "1.0.4"
}
buildTypes {
release {
Expand Down

0 comments on commit 976aafb

Please sign in to comment.