Andrea Jonus
Andrea Jonus
First of all, thank you for making this plugin and audio_service, they're both great! I'm trying to add support for Icy metadata to the Android version of the plugin, for...
When `Window.exitOnBack` is set to true, the back button is supposed to close the main activity of the Titanium app. What we're doing instead is: ``` $this.addEventListener('androidback', function() { $this.exitOnClose...
We could add a listener to the `Titanium.Gesture.orientationchange` event to update the constants `Alloy.Globals.SCREEN_WIDTH` and `Alloy.Globals.SCREEN_HEIGHT` every time the device changes orientation.
See documentation: http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.Toolbar We could use the Toolbar component to avoid using [ActionBarExtras](https://github.com/ricardoalcocer/actionbarextras) as a dependency of T/UIFactory/Window
I'm trying to use access groups to share data between two apps, by reading and writing secure properties. Reading from [this issue](https://github.com/benbahrenburg/Securely/issues/37) it looks like this feature is not supported....
Using an infinite loop to handle recurring calls to the "scroll" method causes a memory leak since it keeps running even after the component is rebuilt or replaced. I've replaced...