diff --git a/phoneClients/android/GpsTracker/src/main/java/com/websmithing/gpstracker/MyHttpClient.java b/phoneClients/android/GpsTracker/src/main/java/com/websmithing/gpstracker/MyHttpClient.java index 25e3bf1..c58cb87 100644 --- a/phoneClients/android/GpsTracker/src/main/java/com/websmithing/gpstracker/MyHttpClient.java +++ b/phoneClients/android/GpsTracker/src/main/java/com/websmithing/gpstracker/MyHttpClient.java @@ -5,6 +5,10 @@ import com.loopj.android.http.RequestParams; public class MyHttpClient { + + // use the websmithing defaultUploadWebsite for testing, change the *phoneNumber* form variable to something you + // know and then check your location with your browser here: http://www.websmithing.com/gpstracker/displaymap.php + private static final String defaultUploadWebsite = "http://www.websmithing.com/gpstracker/updatelocation.php"; private static AsyncHttpClient client = new AsyncHttpClient(); diff --git a/phoneClients/android/README.md b/phoneClients/android/README.md index 56fb133..1f6d856 100644 --- a/phoneClients/android/README.md +++ b/phoneClients/android/README.md @@ -1 +1,11 @@ -This project was built with android studio and is completed and works fine with both servers. +This project was built with *android studio* and is completed and works fine with both servers. + +use the websmithing defaultUploadWebsite: + +http://www.websmithing.com/gpstracker/updatelocation.php + +for testing + +change the *phoneNumber* form variable to something you know and then check your location with your browser here: + +http://www.websmithing.com/gpstracker/displaymap.php diff --git a/phoneClients/ios/GpsTracker/WSViewController.m b/phoneClients/ios/GpsTracker/WSViewController.m index 58cff52..cc62af4 100644 --- a/phoneClients/ios/GpsTracker/WSViewController.m +++ b/phoneClients/ios/GpsTracker/WSViewController.m @@ -171,6 +171,9 @@ - (void)updateWebsiteWithLatitde:(NSString *)latitude longitude:(NSString *)longitude speed:(NSString *)speed date:(NSString *)date distance:(NSString *)distance sessionID:(NSString *)sessionID accuracy:(NSString *)accuracy extraInfo:(NSString *)extraInfo direction:(NSString *)direction { + // use the websmithing defaultUploadWebsite for testing, change the *phoneNumber* form variable to something you + // know and then check your location with your browser here: http://www.websmithing.com/gpstracker/displaymap.php + NSString *defaultUploadWebsite = @"http://www.websmithing.com/gpstracker/updatelocation.php"; AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; diff --git a/phoneClients/ios/README.md b/phoneClients/ios/README.md index 3966bec..c5b981f 100644 --- a/phoneClients/ios/README.md +++ b/phoneClients/ios/README.md @@ -1 +1,11 @@ -this is the ios client for gpstracker. Remember that you need to open this project with GpsTracker.xcworkspace since you are using cocoapods. +this is the ios client for gpstracker. Remember that you need to open this project with GpsTracker.xcworkspace since you are using AFNetworking cocoapods. + +use the websmithing defaultUploadWebsite: + +http://www.websmithing.com/gpstracker/updatelocation.php + +for testing + +change the *phoneNumber* form variable to something you know and then check your location with your browser here: + +http://www.websmithing.com/gpstracker/displaymap.php diff --git a/phoneClients/javaMe/README.md b/phoneClients/javaMe/README.md index 92ae4aa..3330ab3 100644 --- a/phoneClients/javaMe/README.md +++ b/phoneClients/javaMe/README.md @@ -1 +1,11 @@ this is the javaMe / j2me client for gpstracker. This project was built with NetBeans 7.4 and java ME sdk 3.4. + +use the websmithing defaultUploadWebsite: + +http://www.websmithing.com/gpstracker/updatelocation.php + +for testing + +change the *phoneNumber* form variable to something you know and then check your location with your browser here: + +http://www.websmithing.com/gpstracker/displaymap.php diff --git a/phoneClients/javaMe/src/com/websmithing/gpstracker/GpsTracker.java b/phoneClients/javaMe/src/com/websmithing/gpstracker/GpsTracker.java index 1300efc..db1c18f 100644 --- a/phoneClients/javaMe/src/com/websmithing/gpstracker/GpsTracker.java +++ b/phoneClients/javaMe/src/com/websmithing/gpstracker/GpsTracker.java @@ -30,7 +30,11 @@ private RmsHelper rms; private GpsHelper gps; - private String uploadWebsite; + private String uploadWebsite; + + // use the websmithing defaultUploadWebsite for testing, change the *phoneNumber* form variable to something you + // know and then check your location with your browser here: http://www.websmithing.com/gpstracker/displaymap.php + private String defaultUploadWebsite = "http://www.websmithing.com/gpstracker/updatelocation.php"; protected String phoneNumber; diff --git a/phoneClients/windowsPhone/GPSTracker/MainPage.xaml.cs b/phoneClients/windowsPhone/GPSTracker/MainPage.xaml.cs index fa61410..8471c29 100644 --- a/phoneClients/windowsPhone/GPSTracker/MainPage.xaml.cs +++ b/phoneClients/windowsPhone/GPSTracker/MainPage.xaml.cs @@ -69,12 +69,10 @@ { try { - /* example url - http://www.websmithing.com/gpstracker2/getgooglemap3.php?lat=47.473349&lng=-122.025035&mph=137&dir=0&mi=0& - dt=2008-04-17%2012:07:02&lm=0&h=291&w=240&zm=12&dis=25&pn=momosity&sid=11137&acc=95&iv=yes&info=momostuff - */ - httpCount++; + + // use the websmithing defaultUploadWebsite for testing, change the *phoneNumber* form variable to something you + // know and then check your location with your browser here: http://www.websmithing.com/gpstracker/displaymap.php string defaultUploadWebsite = "http://www.websmithing.com/gpstracker/updatelocation.php"; HttpContent httpContent = new FormUrlEncodedContent(new[] diff --git a/phoneClients/windowsPhone/README.md b/phoneClients/windowsPhone/README.md index f91633d..2bc988d 100644 --- a/phoneClients/windowsPhone/README.md +++ b/phoneClients/windowsPhone/README.md @@ -1 +1,11 @@ This version of the windows phone client works fine with both servers. + +use the websmithing defaultUploadWebsite: + +http://www.websmithing.com/gpstracker/updatelocation.php + +for testing + +change the *phoneNumber* form variable to something you know and then check your location with your browser here: + +http://www.websmithing.com/gpstracker/displaymap.php \ No newline at end of file diff --git a/servers/parse/README.md b/servers/parse/README.md index b8d0d12..0b3bbf7 100644 --- a/servers/parse/README.md +++ b/servers/parse/README.md @@ -1 +1,3 @@ This is not implemented in version 3 of the gps tracker. This is a placeholder for version 4. Version 4 will be specifically for the parse server app. + +Also, *you only need to use one server stack*. diff --git a/servers/php/README.md b/servers/php/README.md index 394921e..5b139fd 100644 --- a/servers/php/README.md +++ b/servers/php/README.md @@ -1 +1,3 @@ The php server has been fully updated, the database is mysql 5 or greater. The database is in the mysql directory. + +Also, *you only need to use one server stack*.