Joshua Quick
Joshua Quick
If you want to `extend` from a Titanium proxy type, then my `KrollObject.m` changes are needed to expose it as a JS class and provide a prototype on iOS. As...
@sgtcoolguy, Our iOS background service is our own thing and not a built-in iOS feature. When the app's UI is put into the background by pressing the Home button, we...
@janvennemann, > So i was wondering why we should prevent the UI/app.js from loading? We don't want to do this. The original question was asking is it possible for an...
> i'm curious how you want to check if a session is available? I just wrote it now. It looks like the below. I've already tested it on iOS 13...
@sgtcoolguy, setting the Window's `exitOnClose` property to `true` (the default) tells the system to destroy the window and all of its child windows upon close. It does not kill the...
@m1ga , @jasonkneen , there's a reason why Titanium's Android audio recorder is limited to uncompressed WAV/PCM format. It's the only guaranteed format we can implement. I know about the...
@m1ga , thanks for testing it out. It sounds like it's still a problem to this day. And I don't recall there being any APIs to detect what formats/codecs are...
I wonder if you can use the [MediaCodecList.findEncoderForFormat()](https://developer.android.com/reference/android/media/MediaCodecList#findEncoderForFormat(android.media.MediaFormat)) method to detect if the audio format is supported. Note that you also have to feed it the sample rate and channel...
Oh this is an interesting idea. Kind of reminds me of our iOS-only [hidesBarsOnSwipe](https://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.NavigationWindow-property-hidesBarsOnSwipe) and [hidesSearchBarWhenScrolling](https://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.NavigationWindow-property-hidesSearchBarWhenScrolling) features, but your solution gives the app dev more direct control of when to...
Right. This is an issue because `mBottomNavigationHeightValue` is the height of the bar from its "resource" file, but the actual height of the bar will be increased via `fitSystemWindows()` insets....