diff --git a/phoneClients/android/.idea/workspace.xml b/phoneClients/android/.idea/workspace.xml index b450410..b8310e8 100644 --- a/phoneClients/android/.idea/workspace.xml +++ b/phoneClients/android/.idea/workspace.xml @@ -108,7 +108,7 @@ - + @@ -117,8 +117,10 @@ - - + + + + @@ -538,8 +540,8 @@ - @@ -876,8 +878,8 @@ - - + + @@ -891,7 +893,7 @@ - + @@ -967,7 +969,9 @@ - + + + @@ -1182,13 +1186,6 @@ - - - - - - - @@ -1196,9 +1193,18 @@ + + + + + + + + + - + diff --git a/phoneClients/android/GpsTracker/src/main/java/com/websmithing/gpstracker/GpsTrackerActivity.java b/phoneClients/android/GpsTracker/src/main/java/com/websmithing/gpstracker/GpsTrackerActivity.java index e2a5315..37a68dc 100644 --- a/phoneClients/android/GpsTracker/src/main/java/com/websmithing/gpstracker/GpsTrackerActivity.java +++ b/phoneClients/android/GpsTracker/src/main/java/com/websmithing/gpstracker/GpsTrackerActivity.java @@ -141,7 +141,6 @@ requestParams.put("phonenumber", "androidUser"); requestParams.put("sessionid", sessionID); // uuid requestParams.put("accuracy", Float.toString(location.getAccuracy())); // in meters - requestParams.put("locationisvalid", "yes"); requestParams.put("extrainfo", Double.toString(location.getAltitude())); requestParams.put("eventtype", "android"); requestParams.put("direction", Float.toString(location.getBearing())); diff --git a/phoneClients/javaMe/src/com/websmithing/gpstracker/GpsHelper.java b/phoneClients/javaMe/src/com/websmithing/gpstracker/GpsHelper.java index 3c3cd76..02eadaf 100644 --- a/phoneClients/javaMe/src/com/websmithing/gpstracker/GpsHelper.java +++ b/phoneClients/javaMe/src/com/websmithing/gpstracker/GpsHelper.java @@ -151,7 +151,6 @@ + "&phonenumber=javaMeUser" + "&sessionid=" + String.valueOf(sessionID) // System.currentTimeMillis(); + "&accuracy=" + String.valueOf((int)(qualifiedCoordinates.getHorizontalAccuracy())) // in meters - + "&locationisvalid=yes" + "&extrainfo=" + location.getExtraInfo("text/plain") + "&eventtype=javaMe"; diff --git a/phoneClients/windowsPhone/GPSTracker/MainPage.xaml.cs b/phoneClients/windowsPhone/GPSTracker/MainPage.xaml.cs index 569c9f6..894a651 100644 --- a/phoneClients/windowsPhone/GPSTracker/MainPage.xaml.cs +++ b/phoneClients/windowsPhone/GPSTracker/MainPage.xaml.cs @@ -89,7 +89,6 @@ new KeyValuePair("phonenumber", "windowsPhoneUser"), //Windows.Phone.System.Analytics.HostInformation.PublisherHostId), new KeyValuePair("sessionid", sessionID), // guid new KeyValuePair("accuracy", accuracy), // in meters - new KeyValuePair("locationisvalid", "yes"), new KeyValuePair("extrainfo", "httpCount-" + httpCount.ToString()), new KeyValuePair("eventtype", "windowsPhone") });