[android-developers] Google Cancelled this Order. Reason: Other

2013-07-06 Thread Adam Ratana
Hi, yes, I saw this too. Did not get customer emails about it, though, so can't 
be sure what the issue was. 

-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Fork/Join and JSR166 on Android

2013-07-06 Thread Ed Harned
Ratamovic:

Why on earth would you want to use a dynamic decomposing framework in 
Android? These things only work well when there are many, many processors 
to handle the splits. Such a framework would kill a phone/tablet; you would 
process one task at the expense of everything else.

If you're looking to split work into multiple threads,  then there are 
products to do just that. I wrote this article and the software it 
expounds: Managing Threads in 
Androidhttp://coopsoft.com/ar/AndroidArticle.html

Ed

On Tuesday, July 2, 2013 6:00:35 PM UTC-4, Ratamovic wrote:

 Hi all,

 I am trying to find some information about the support of the new 
 Fork/Join framework introduced in Java7 (JSR166).
 Of course Android doesn't support Java 1.7 (yet at least) but a Java6 
 (limited) backport of Fork/Join exists (see jsr166 
 http://gee.cs.oswego.edu/dl/concurrency-interest/). I am curious to know 
 if anybody had experience with using it on Android.

 The subsidiary question would be about the use of any other concurrent 
 framework on Android (like Akka, etc.). Any feedback?

 Thanks in advance!


-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Google direction API

2013-07-06 Thread Sunny
Thank you for your response TreKing !

I did exactly that the first time ( actually multiple times) but the status 
returned was NOT FOUND. I also ran it on the browser and this is the 
response I got:-
?xml version=1.0 encoding=UTF-8?
-DirectionsResponsestatusNOT_FOUND/status/DirectionsResponse

However when I insert the space ( like I have it in the code)  and run it 
on the browser, it does return results.

if you cut and paste the below in URL, it would give the correct result:-

http://maps.googleapis.com/maps/api/directions/xml?origin=37.2345487 
-121.5840723destination=37.236064 
-121.961595sensor=false

However if you remove the space btw the Lat  Lnt, it would not work and 
the status will be NOT FOUND.

I maybe missing something  very petty here.. sometimes I pair of eye ain't 
enough I suppose..
thanks
Sunil.




On Friday, July 5, 2013 7:57:57 PM UTC-7, TreKing wrote:

 This is your code

 On Thu, Jul 4, 2013 at 9:19 PM, Sunny meno...@gmail.com javascript:wrote:

  String hosturl=https://maps.googleapis.com/maps/api/directions/xml?;;
  String url = origin= +*lat1 +   + lon1*  + destination= + *lat2 
 +   + lon2* + sensor=true;


 And this is the docs for that API.

 https://developers.google.com/maps/documentation/directions/#RequestParameters

 *Required parameters* 

- origin — The address or textual latitude/longitude value from which 
you wish to calculate directions. If you pass an address as a string, the 
Directions service will geocode the string and convert it to a 
latitude/longitude coordinate to calculate directions. *If you pass 
coordinates, ensure that no space exists between the latitude and 
 longitude 
values.*


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices
  

-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Location Listener event when not online

2013-07-06 Thread Gary Blakely
I write apps for both Windows Phone in C# and Android in Java.  I have 
similar apps, on each marketplace, that both use the GPS to track movement 
as the phone moves about.  When the phone is out moving around, the 
internet connectivity, of course, goes in and out.

Both versions of my app transmit the GPS readings to my cloud server REST 
service where they are recorded on to a database.  If the app has no 
internet connection, it saves the GPS locations on the phone and then, when 
the internet connection comes back, it bursts what it has to the cloud 
server.  This process works great in Windows phone.

But with Android, when there is no internet connection, my 
onLocationChanged event in my LocationListener does not get triggered as 
the phone moves about.  It's working as though the GPS gets turned off when 
there is no internet signal.  That makes no sense to me.  Is it supposed to 
work this  way?  Why would the GPS need an internet connection to work?
Thanks,
Gary

-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Google direction API

2013-07-06 Thread TreKing
On Sat, Jul 6, 2013 at 4:19 PM, Sunny menon1...@gmail.com wrote:

 However if you remove the space btw the Lat  Lnt, it would not work and
 the status will be NOT FOUND.


Well, you're not just removing the space and thus combining the two values,
are you? You're supposed to separate them with a comma:

http://maps.googleapis.com/maps/api/directions/xml?origin=37.2345487,-121.5840723destination=37.236064,-121.961595sensor=false

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Google direction API

2013-07-06 Thread Sunny
Hi TreKing,
It doesn't matter whether you put a comma or a space, the behavior is :  it 
works well with a space or comma when you are invoking it on the browser. 
It does not work when you do the same from an android code. I wish the 
error response was something like illegal argument or not found etc but 
here the response is REQUEST_DENIED. That is what is frustrating. 

thanks
Sunny

On Saturday, July 6, 2013 4:51:16 PM UTC-7, TreKing wrote:


 On Sat, Jul 6, 2013 at 4:19 PM, Sunny meno...@gmail.com javascript:wrote:

 However if you remove the space btw the Lat  Lnt, it would not work and 
 the status will be NOT FOUND.


 Well, you're not just removing the space and thus combining the two 
 values, are you? You're supposed to separate them with a comma:


 http://maps.googleapis.com/maps/api/directions/xml?origin=37.2345487,-121.5840723destination=37.236064,-121.961595sensor=false


 -
 TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago 
 transit tracking app for Android-powered devices
  

-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Google Cancelled this Order. Reason: Other

2013-07-06 Thread Adam Ratana
Anyone else not seeing many orders clearing? Zero have cleared today for me and 
only ones from early yesterday are just now clearing. 

-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Google Cancelled this Order. Reason: Other

2013-07-06 Thread Steve Gabrilowitz
Same here they seem AFU lately
 On Jul 6, 2013 10:59 PM, Adam Ratana adam.rat...@gmail.com wrote:

 Anyone else not seeing many orders clearing? Zero have cleared today for
 me and only ones from early yesterday are just now clearing.

 --
 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en
 ---
 You received this message because you are subscribed to the Google Groups
 Android Developers group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to android-developers+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
Android Developers group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.