Version 1.6.0
This commit is contained in:
parent
c84c260d1a
commit
1f5b13e89c
|
@ -7,7 +7,7 @@
|
||||||
The compat library may be found on jcenter and Maven Central repository. Add it to your project by adding the following dependency:
|
The compat library may be found on jcenter and Maven Central repository. Add it to your project by adding the following dependency:
|
||||||
|
|
||||||
```Groovy
|
```Groovy
|
||||||
compile 'no.nordicsemi.android:dfu:1.5.2'
|
compile 'no.nordicsemi.android:dfu:1.6.0'
|
||||||
```
|
```
|
||||||
|
|
||||||
If you use proguard, add the following line to your proguard rules:
|
If you use proguard, add the following line to your proguard rules:
|
||||||
|
@ -53,7 +53,7 @@ The library is compatible with nRF51 and nRF52 devices with S-Series Soft Device
|
||||||
* **SDK 12.0.0** - New Secure DFU has been released. Buttonless service is experimental.
|
* **SDK 12.0.0** - New Secure DFU has been released. Buttonless service is experimental.
|
||||||
* **SDK 13.0.0** - Buttonless DFU (still experimental) uses different UUIDs. No bond sharing supported. Bootloader will use address +1.
|
* **SDK 13.0.0** - Buttonless DFU (still experimental) uses different UUIDs. No bond sharing supported. Bootloader will use address +1.
|
||||||
* **SDK 14.0.0** - Buttonless DFU is no longer experimental. A new UUID (0004) added for bonded only devices (previous one (0003) is for non-bonded only).
|
* **SDK 14.0.0** - Buttonless DFU is no longer experimental. A new UUID (0004) added for bonded only devices (previous one (0003) is for non-bonded only).
|
||||||
* **SDK 14.1.0** - Support for higher MTUs added.
|
* **SDK 15.0.0** - Support for higher MTUs added (planned, may be postponed).
|
||||||
|
|
||||||
This library is fully backwards compatible and supports both the new and legacy DFU.
|
This library is fully backwards compatible and supports both the new and legacy DFU.
|
||||||
The experimental buttonless DFU service from SDK 12 is supported since version 1.1.0. Due to the fact, that this experimental service from SDK 12 is not safe,
|
The experimental buttonless DFU service from SDK 12 is supported since version 1.1.0. Due to the fact, that this experimental service from SDK 12 is not safe,
|
||||||
|
|
|
@ -15,7 +15,7 @@ apply plugin: 'com.jfrog.bintray'
|
||||||
ext {
|
ext {
|
||||||
PUBLISH_GROUP_ID = 'no.nordicsemi.android'
|
PUBLISH_GROUP_ID = 'no.nordicsemi.android'
|
||||||
PUBLISH_ARTIFACT_ID = 'dfu'
|
PUBLISH_ARTIFACT_ID = 'dfu'
|
||||||
PUBLISH_VERSION = '1.5.2'
|
PUBLISH_VERSION = '1.6.0'
|
||||||
|
|
||||||
bintrayRepo = 'android'
|
bintrayRepo = 'android'
|
||||||
bintrayName = 'dfu-library'
|
bintrayName = 'dfu-library'
|
||||||
|
@ -46,8 +46,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 18
|
minSdkVersion 18
|
||||||
targetSdkVersion 27
|
targetSdkVersion 27
|
||||||
versionCode 17
|
versionCode 18
|
||||||
versionName "1.5.2"
|
versionName "1.6.0"
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
|
|
Loading…
Reference in New Issue