Added V2.6 of pebble app to Android APK, and packaged as V2.5.2

This commit is contained in:
Graham Jones
2017-09-10 22:17:23 +01:00
parent 87774a10ef
commit b1b8659d55
7 changed files with 11 additions and 11 deletions

View File

@@ -1,11 +1,14 @@
OpenSeizureDetector Android App - Change Log OpenSeizureDetector Android App - Change Log
============================================ ============================================
V2.5.2 - 09 May 2016 V2.5.3 - 10sep2017 - Added Pebble App V2.6 which provides better alarm reliability
- no changes to Android App other than first run dialog.
V2.5.2 - 09 May 2017
Added support for Pebble App V2.5 which includes a multi-ROI mode to improve sensitivity. Added support for Pebble App V2.5 which includes a multi-ROI mode to improve sensitivity.
V2.5.1 - 07 May 2016 V2.5.1 - 07 May 2017
- Improved alarm annunciation for short duration seizures - setting - Improved alarm annunciation for short duration seizures - setting
Latch Alarms will result in alarms sounding for at least Latch Alarm Latch Alarms will result in alarms sounding for at least Latch Alarm
Timer Duration seconds before resetting. Timer Duration seconds before resetting.

BIN
app/app-release-2.5.2.apk Normal file

Binary file not shown.

View File

@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.org.openseizuredetector" package="uk.org.openseizuredetector"
android:versionCode="36" android:versionCode="37"
android:versionName="2.5.2"> android:versionName="2.5.3">
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

Binary file not shown.

View File

@@ -275,7 +275,7 @@ public class MainActivity extends Activity {
TextView tv; TextView tv;
tv = (TextView) findViewById(R.id.versionTv); tv = (TextView) findViewById(R.id.versionTv);
String versionName = mUtil.getAppVersionName(); String versionName = mUtil.getAppVersionName();
tv.setText("OpenSeizureDetector Server Version " + versionName); tv.setText("OpenSeizureDetector Android App Version " + versionName);
mUtil.writeToSysLogFile("MainActivity.onStart - Binding to Server"); mUtil.writeToSysLogFile("MainActivity.onStart - Binding to Server");
mUtil.bindToServer(this, mConnection); mUtil.bindToServer(this, mConnection);

View File

@@ -461,11 +461,8 @@ public class StartupActivity extends Activity {
+ "http://openseizuredetector.org.uk, or the app Facebook page at https://www.facebook.com/openseizuredetector. " + "http://openseizuredetector.org.uk, or the app Facebook page at https://www.facebook.com/openseizuredetector. "
+ "so I can get in touch if necessary.\nThank you! Graham \ngraham@openseizuredetector.org.uk " + "so I can get in touch if necessary.\nThank you! Graham \ngraham@openseizuredetector.org.uk "
+ "\n\nChanges in this version:" + "\n\nChanges in this version:"
+ "\n- Added an alarm latch automatic reset timer. This means that if you enable 'Latch Alarms'" + "\n- Upgraded Pebble watch app to V2.6, which improves alarm detection annunciation."
+ "\n in the alarms settings then an alarm will stay active for a period set by the Latch Alarm" + "\n- Use the 'Install Watch App' menu option to upgrade the application on the watch."
+ "\n Time Duration setting before it re-sets, even if the watch only detects an alarm condition"
+ "\n for a short period. This is to make sure a carer is alerted to even a short duration alarm"
+ "\n condition. The alarm can be reset manually by pressing the 'Accept Alarm' button."
); );
// This makes the links display as links, but they do not respond to clicks for some reason... // This makes the links display as links, but they do not respond to clicks for some reason...
Linkify.addLinks(s, Linkify.ALL); Linkify.addLinks(s, Linkify.ALL);

View File

@@ -4,7 +4,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.3.1' classpath 'com.android.tools.build:gradle:2.3.3'
} }
} }
allprojects { allprojects {