Android app submission says, remove any logging before submission. Have a few question on this one
- Is
System.out.println
considered as logging? How can I disable it across the app without having to remove it on by one - Tried
android:debuggable="false"
inside manifest, but eclipse says "Avoid hardcoding the debug mode; leaving it out allows debug and release builds to automatically assign one" - I have some third party jar files that shows Log statement when I test my app. How can I remove them, considering I don't have the source.
Suggestions are highly appreciated.