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

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"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.org.openseizuredetector"
android:versionCode="36"
android:versionName="2.5.2">
android:versionCode="37"
android:versionName="2.5.3">
<uses-permission android:name="android.permission.INTERNET" />
<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;
tv = (TextView) findViewById(R.id.versionTv);
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.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. "
+ "so I can get in touch if necessary.\nThank you! Graham \ngraham@openseizuredetector.org.uk "
+ "\n\nChanges in this version:"
+ "\n- Added an alarm latch automatic reset timer. This means that if you enable 'Latch Alarms'"
+ "\n in the alarms settings then an alarm will stay active for a period set by the Latch Alarm"
+ "\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."
+ "\n- Upgraded Pebble watch app to V2.6, which improves alarm detection annunciation."
+ "\n- Use the 'Install Watch App' menu option to upgrade the application on the watch."
);
// This makes the links display as links, but they do not respond to clicks for some reason...
Linkify.addLinks(s, Linkify.ALL);