[android-developers] Android Market Developer Console Bugs feature

2010-05-20 Thread Zanshin
The new bugs feature is a great move forward to empower devs and users
both, kudos Google.

However, the reports don't tell me which version of my app the report
is from, which is critical for me to properly triage.

Is there any feedback channel to Google other than this group we could
use to get this feature added?

-D

-- 
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] Re: Android Market Developer Console Bugs feature

2010-05-20 Thread Zanshin
You're correct, but that's only for crashes.  ANRs don't show version
in the report.

Again, date and version # are critical for developers to have with
reports.

On May 20, 12:32 pm, TreKing treking...@gmail.com wrote:
 On Thu, May 20, 2010 at 2:27 PM, Zanshin zanshin...@gmail.com wrote:
  However, the reports don't tell me which version of my app the report is
  from, which is critical for me to properly triage.

 Yes it does - expand the bug report and the section that says Stack Trace
 (assuming there is one), shows the version(s) and date.

 I already have one report that's been generated both from my current and the
 previous version of my app.

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

 --
 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 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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] Re: Wifi drop Issues on Motorola Droid

2010-05-09 Thread Zanshin
There are several bugs.  It should be impossible to crash the phone by
using the WifiManager.  It isn't.

The supplicant state doesn't always return correctly.  Also,
WifiManager sometimes hangs and refuses to return scan results.   Then
there're the issues with the Broadcom and TI wifi drivers refusing to
unsleep properly.

Wifi is a big mess right now.  Been trying to get Google's attention.
It's not AOSP's fault, it's the chip vendors.  But Google could push
them to get their drivers working better.



On May 7, 1:01 am, Kostya Vasilyev kmans...@gmail.com wrote:
 There might be a bug in Droid/Milestone.

 I had a user report that my app, WiFi Manager crashes when enabling WiFi  
 on the Droid.

 All my code does is call wifiManager.setWifiEnabled(true)

 -- Kostya

 mort m...@sto-helit.de ÐÉÓÁÌ(Á) × Ó×Ï£Í ÐÉÓØÍÅ Fri, 07 May 2010 10:01:51  
 +0400:

  You're going to want to create a  
  WifiManager.WifiLockhttp://developer.android.com/intl/de/reference/android/net/wifi/WifiM...

  I get WiFi drops even when using Android's browser or when Market is
  opened and updating some apps, often only a couple of seconds after
  the connection is established. Doesn't Google use it's own APIs? Or is
  there an additional bug on the Droid/Milestone?

 --
 Kostya Vasilyev - WiFi Manager + pretty widget -  
 http://kmansoft.wordpress.com/sw

 --
 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 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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] Re: Wifi drop Issues on Motorola Droid

2010-05-06 Thread Zanshin
You're going to want to create a WifiManager.WifiLock
http://developer.android.com/intl/de/reference/android/net/wifi/WifiManager.WifiLock.html

This will likely solve most of your problem.  The rest can be solved
by my app. :P

The drop issues specific to the Droid, but happens on all Android
devices.

Hoping Google fixes in 2.2

On May 6, 4:52 am, KK krishnakumar.ramachand...@gmail.com wrote:
 I am trying to develop a streaming application and I am testing it on
 multiple devices. But I am seeing some problems on Motorola Droid with
 regards to wifi connection. The wifi connection drops occasionally and
 comes back in 30 seconds to 1 minute on the Droid. Sometimes while in
 the middle of streaming I get network connection errors even though I
 am standing very next to the wifi router. I am not finding this
 problem with any other devices. Has anyone found any similar issues
 with the Droid? Any idea what can be done in my program to fix this?

 Thanks
 KK

 --
 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 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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] Re: Wifi drop Issues on Motorola Droid

2010-05-06 Thread Zanshin
Whoops.  The drop issues aren't specific to the Droid, but happen on
all Android devices AFAIK.

On May 6, 6:56 am, Zanshin zanshin...@gmail.com wrote:
 You're going to want to create a 
 WifiManager.WifiLockhttp://developer.android.com/intl/de/reference/android/net/wifi/WifiM...

 This will likely solve most of your problem.  The rest can be solved
 by my app. :P

 The drop issues specific to the Droid, but happens on all Android
 devices.

 Hoping Google fixes in 2.2

 On May 6, 4:52 am, KK krishnakumar.ramachand...@gmail.com wrote:





  I am trying to develop a streaming application and I am testing it on
  multiple devices. But I am seeing some problems on Motorola Droid with
  regards to wifi connection. The wifi connection drops occasionally and
  comes back in 30 seconds to 1 minute on the Droid. Sometimes while in
  the middle of streaming I get network connection errors even though I
  am standing very next to the wifi router. I am not finding this
  problem with any other devices. Has anyone found any similar issues
  with the Droid? Any idea what can be done in my program to fix this?

  Thanks
  KK

  --
  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 
  athttp://groups.google.com/group/android-developers?hl=en

 --
 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 
 athttp://groups.google.com/group/android-developers?hl=en

-- 
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] Gmail Notification

2009-02-18 Thread Zanshin

I'm new to Android development.  I'd like to extend the gmail
notification to provide more information, such as subject and
sender.   I've seen code examples for extending the sms notifications
to do something similar, but I can't seem to find any public classes
which would let me access gmail in a similar fashion.

It would be nice if someone could point me in the right direction.

TIA

Oh, and so far, loving the Android platform. It's a dream to develop
for. :D

-D

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---