[android-beginners] Re: Deactivate any calls to Log methods before publishing app

2010-02-23 Thread Indicator Veritatis
Hi, Justin- True to from, the official Android documentation on this property on http://developer.android.com/reference/android/R.attr.html is not all that clear, but it seems to say just as you do: that it concerns using the debugger, NOT logging. But the OP had another closely related question

Re: [android-beginners] Re: Deactivate any calls to Log methods before publishing app

2010-02-23 Thread TreKing
On Tue, Feb 23, 2010 at 4:55 AM, Indicator Veritatis mej1...@yahoo.comwrote: is is really true that all logging using 'Log' must be turned off to put the application on the market? No, it's just recommended that you do. I can think of lots of uses for logging that even the user can turn

Re: [android-beginners] Re: Deactivate any calls to Log methods before publishing app

2010-02-23 Thread Justin Anderson
However, it would be a good programming practice to only leave logging on if you provide a way for users to get that information back to you if they have a problem... Otherwise it is just wasting cycles and battery and slows your app down a bit. Again though, the key word is SHOULD.