I plan to sign apk and release it (via Export Eclipse tool). Then upload it to the market. I know that debugging is set to false by default when it is signed, so this means that no logs will be written. At the same time, if I set the debugging to true and release apk, then I will get all the logs.
What really interests me is the last debug expression, which I only added. I am currently using the Log.i operator to add informational logs. Is there a way that my application only logs Info logs (i.e., only my logs). Mybe, if I turn off the log and have system.out.print?
The reason I do this is because I want to send the last 100 lines of the log when the crash happens, and I only care about my log entries.
Please help me thanks
Snake source share