This commit is contained in:
Graham Jones
2019-02-15 20:17:07 +00:00
4 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":48,"versionName":"3.0.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] [{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":49,"versionName":"3.0.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]

View File

@@ -1,7 +1,7 @@
<?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="48" android:versionCode="49"
android:versionName="3.0.0" android:versionName="3.0.0"
> >
<!--android:allowBackup="false"--> <!--android:allowBackup="false"-->

View File

@@ -93,7 +93,7 @@ public class SdWebServer extends NanoHTTPD {
String postData = files.get("postData"); String postData = files.get("postData");
Log.v(TAG, " postData=" + postData); Log.v(TAG, " postData=" + postData);
// Send the data to the SdDataSource so the app can pick it up. // Send the data to the SdDataSource so the app can pick it up.
if (parameters != null) { if (parameters.get("dataObj") != null) {
Log.v(TAG,"passing parameters to data source"); Log.v(TAG,"passing parameters to data source");
answer = mSdServer.mSdDataSource.updateFromJSON(parameters.get("dataObj").toString()); answer = mSdServer.mSdDataSource.updateFromJSON(parameters.get("dataObj").toString());
} else { } else {