1
0
mirror of https://github.com/oliexdev/openScale.git synced 2025-08-18 14:31:23 +02:00

updated external library version

This commit is contained in:
oliexdev
2019-08-27 15:56:02 +02:00
parent 388bb89c21
commit 7b7e58aea9
2 changed files with 7 additions and 7 deletions

View File

@@ -59,7 +59,7 @@ android {
} }
dependencies { dependencies {
implementation 'com.google.android.material:material:1.1.0-alpha07' implementation 'com.google.android.material:material:1.1.0-alpha09'
implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.recyclerview:recyclerview:1.0.0' implementation 'androidx.recyclerview:recyclerview:1.0.0'
@@ -68,19 +68,19 @@ dependencies {
// Simple CSV // Simple CSV
implementation 'com.j256.simplecsv:simplecsv:2.3' implementation 'com.j256.simplecsv:simplecsv:2.3'
// Blessed Android // Blessed Android
implementation 'com.github.weliem:blessed-android:0.6' implementation 'com.github.weliem:blessed-android:0.8'
// CustomActivityOnCrash // CustomActivityOnCrash
implementation 'cat.ereza:customactivityoncrash:2.2.0' implementation 'cat.ereza:customactivityoncrash:2.2.0'
// Room // Room
implementation 'androidx.room:room-runtime:2.1.0-rc01' implementation 'androidx.room:room-runtime:2.2.0-alpha02'
annotationProcessor 'androidx.room:room-compiler:2.1.0-rc01' annotationProcessor 'androidx.room:room-compiler:2.2.0-alpha02'
androidTestImplementation 'androidx.room:room-testing:2.1.0-rc01' androidTestImplementation 'androidx.room:room-testing:2.2.0-alpha02'
// Timber // Timber
implementation 'com.jakewharton.timber:timber:4.7.1' implementation 'com.jakewharton.timber:timber:4.7.1'
// Local unit tests // Local unit tests
testImplementation 'junit:junit:4.12' testImplementation 'junit:junit:4.12'
// Instrumented unit tests // Instrumented unit tests
androidTestImplementation 'androidx.annotation:annotation:1.0.2' androidTestImplementation 'androidx.annotation:annotation:1.1.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test:rules:1.2.0' androidTestImplementation 'androidx.test:rules:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

View File

@@ -333,7 +333,7 @@ public abstract class BluetoothCommunication {
} }
@Override @Override
public void onCharacteristicUpdate(BluetoothPeripheral peripheral, byte[] value, BluetoothGattCharacteristic characteristic) { public void onCharacteristicUpdate(final BluetoothPeripheral peripheral, byte[] value, final BluetoothGattCharacteristic characteristic, final int status) {
resetDisconnectTimer(); resetDisconnectTimer();
onBluetoothNotify(characteristic.getUuid(), value); onBluetoothNotify(characteristic.getUuid(), value);
} }