[android-developers] Application icon missing

2011-04-18 Thread David Caunt
Hi, I have an application with around 8000 installs. Of these, around 5 users have contacted me to say that they have no launcher icon for the app. I have specified a drawable icon in the manifest and added normal (drawable), ldip (drawable-ldpi) and hdpi (drawable-hdpi) versions to my drawable

Re: [android-developers] Application icon missing

2011-04-18 Thread David Caunt
Thank you for responses. One user reported the problem like this - sounds like he has to launch it via the Market every time! It's shown as installed in my download list and I can run it OK from there, but I can't find a launcher icon anywhere. It's certainly not available when I use the normal

Re: [android-developers] Re: Amazon appstore order reports

2011-04-05 Thread David Caunt
Ours are working, cheers for the heads up On 5 April 2011 14:00, Justin Giles jtgi...@gmail.com wrote: As of this morning (8am central), the reports are back up and seem accurate. On Tue, Apr 5, 2011 at 3:15 AM, Michael A. michael.aki...@gmail.comwrote: Hi, I contacted them friday. Got

[android-developers] Stack Traces only referencing framework code

2011-03-21 Thread David Caunt
Hi Androiders, I've received a few stack traces which contain only references to framework code, for example: java.lang.NullPointerException at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1366) at android.view.ViewGroup.drawChild(ViewGroup.java:1638) at

Re: [android-developers] Re: Unexpected error

2011-03-21 Thread David Caunt
03-21 18:04:46.301: ERROR/AndroidRuntime(196): Caused by: java.lang.OutOfMemoryError: bitmap size exceeds VM budget Looks like you're using too much memory On 21 March 2011 12:54, TreKing treking...@gmail.com wrote: On Mon, Mar 21, 2011 at 7:43 AM, rishabh agrawal android.rish...@gmail.com

Re: [android-developers] How to stop ActivityManager logging

2011-03-18 Thread David Caunt
You know that even if you achieve this, someone can still list your activities using aapt? What exactly are you trying to achieve? On 18 Mar 2011 13:44, Mark Murphy mmur...@commonsware.com wrote: On Thu, Mar 17, 2011 at 1:19 PM, Will wjelli...@gmail.com wrote: The ActivityManager is logging

Re: [android-developers] Re: Two activities in one window

2011-03-03 Thread David Caunt
Hi Mika, In my case the GiffGaffAPN app actually doesn't seem to have added an APN successfully, though other users report success in reviews. I'm running a HTC Desire with a Sense ROM (rooted) so perhaps it requires a stock Google-experience or AOSP. I'd be interested to know what you find.

Re: [android-developers] Re: Two activities in one window

2011-03-02 Thread David Caunt
Can't you write APN settings through an Android API? The market app GiffGaffAPN does what you are describing. On 2 Mar 2011 23:03, TreKing treking...@gmail.com wrote: -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Publishing / log.d

2011-02-15 Thread David Caunt
There's a simple solution for this using ProGuard. You can tell it to remove functions where the return value is not used with -assumenosideffects See http://stackoverflow.com/questions/2446248/deactivate-any-calls-to-log-before-publishing-are-there-tools-to-do-this/242#242 On 15

[android-developers] How best to lock down an app using LVL when using multiple activities?

2011-01-28 Thread David Caunt
Following the LVL example, I'm calling checkAccess(myCallback) in my first activity. A user can then start another activity by interacting with the UI before a response is received from LVL. When the response arrives, my callback starts a new activity (UnlicensedActivity) and finishes the current