diff --git a/app/build.gradle b/app/build.gradle index a36db66..944795a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -24,7 +24,6 @@ android { dependencies { compile files('libs/mpandroidchartlibrary-2-0-7.jar') - //compile files('libs/pebblekit-2.6.0-eclipse.jar') compile 'com.getpebble:pebblekit:3.0.0@aar' // Unit testing dependencies diff --git a/app/libs/pebblekit-2.6.0-eclipse.jar b/app/libs/pebblekit-2.6.0-eclipse.jar deleted file mode 100644 index 6bf4676..0000000 Binary files a/app/libs/pebblekit-2.6.0-eclipse.jar and /dev/null differ diff --git a/app/src/main/java/uk/org/openseizuredetector/SdDataSourcePebble.java b/app/src/main/java/uk/org/openseizuredetector/SdDataSourcePebble.java index 9f9cfeb..d15b6b8 100644 --- a/app/src/main/java/uk/org/openseizuredetector/SdDataSourcePebble.java +++ b/app/src/main/java/uk/org/openseizuredetector/SdDataSourcePebble.java @@ -230,7 +230,7 @@ public class SdDataSourcePebble extends SdDataSource { Log.v(TAG, "updatePrefs() AlarmTime = " + intVal); setDict.addUint16(KEY_ALARM_TIME, (short) intVal); - prefStr = SP.getString("AlarmThresh", "100"); + prefStr = SP.getString("AlarmThresh", "70"); intVal = (short) Integer.parseInt(prefStr); Log.v(TAG, "updatePrefs() AlarmThresh = " + intVal); setDict.addUint16(KEY_ALARM_THRESH, (short) intVal);