
Remove log calls from (production) code
Is your code packed with Ti.API. and console. calls? Good! They are really useful to inspect and debug your app. But once in production only error-level messages end up in the console for iOS, whereas Android only filters debug-calls out. So for messages you don’t want to show in production use Ti.API.debug and for messages […]