[android-developers] Re: 3.0 Preview SDK won't install
Nope. I haven't tried anything else, I'm hoping it's a just a temporary error. On Jan 29, 2:26 pm, dave wrote: > Hi Darren, > > I had the same issue when I tried to download it with SDK/AVD Manager. > > Did you solve it ? > > dave > > On Jan 29, 2:54 pm, Darren Hinderer wrote: > > > When I try to install the Honeycomb preview using the SDK & AVD > > Manager, I get this error: > > > File not > > found:https://dl-ssl.google.com/android/repository/android-3.0_pre_r01-linu... > > > Anyone have a work around? > > > Thanks, > > -- > > Darren -- 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
[android-developers] 3.0 Preview SDK won't install
When I try to install the Honeycomb preview using the SDK & AVD Manager, I get this error: File not found: https://dl-ssl.google.com/android/repository/android-3.0_pre_r01-linux.zip Anyone have a work around? Thanks, -- Darren -- 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
[android-developers] Call state events for multiple participants
I'm working on an application where I'm monitoring the Android call state. I've spent a lot of time working with and researching the available call state that comes from TelephonyManager. It does not seem to provide enough information to understand the call state for multiple callers. For example, if I wanted to know the duration of both parties in this situation: * Answer an incoming call * Wait 2 minutes * Answer a second incoming call (first call is put on hold) * Wait 4 minutes * Hang up the phone. The events that Telephony Manager provides for this scenario are: * Idle to Ringing (with incoming number) * Ringing to Off hook * Off hook to Ringing (with incoming number) * Ringing to Off hook * Off hook to Idle Now I can assume that the first call is put on hold when the second comes in, but there is no new call state if they are later conferenced together. Or maybe the second call is answered briefly and then put on hold in the first calls place. There is no way to know how long either conversation was. There is another issue here in that I only ever receive one hang up event (off hook to idle). So if instead of putting the first caller on hold, I hung up on them - the call state would look exactly the same. Hopefully it's becoming obvious that I'm lacking the call state needed to fully monitor the phone activity. Is there other call state available or any way to find out when key presses happen for on hold, conference actions, or hang up? -- 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