BLE Library v2.0-alpha3

This commit is contained in:
Aleksander Nowakowski
2018-06-26 16:39:48 +02:00
parent 76678ed73b
commit 4c439f30b6
2 changed files with 5 additions and 5 deletions

View File

@@ -57,11 +57,11 @@ dependencies {
// Import the BLE Common Library.
// The BLE Common Library depends on BLE Library. It is enough to include the first one.
// implementation 'no.nordicsemi.android:ble-common:2.0-alpha2'
implementation 'no.nordicsemi.android:ble-common:2.0-alpha3'
// The BLE Common Library may be included from jcenter. If you want to modify the code,
// clone both projects from GitHub and replace the line above with the following
// (and also the according lines in the settings.gradle):
implementation project(':ble-common')
// implementation project(':ble-common')
implementation('org.simpleframework:simple-xml:2.7.1') {
exclude group: 'stax', module: 'stax-api'

View File

@@ -3,9 +3,9 @@ include ':app', ':wear', ':common'
// Uncomment these lines if you want to import the BLE Library and BLE Common Library as a project,
// not from jcenter:
include ':ble', ':ble-common'
project(':ble').projectDir = file('../Android-BLE-Library/ble')
project(':ble-common').projectDir = file('../Android-BLE-Common-Library/ble-common')
// include ':ble', ':ble-common'
// project(':ble').projectDir = file('../Android-BLE-Library/ble')
// project(':ble-common').projectDir = file('../Android-BLE-Common-Library/ble-common')
// Uncomment these lines if you want to import the DFULibrary as a project, not from jcenter: