Jonathan Baudanza

Results 12 comments of Jonathan Baudanza

This is because `FacebookAdapter` has changed to `MetaAdapter`, but react-native-admob-native-ads hasn't been updated. I was able to resolve this by hardcoded the version of GoogleMobileAdsMediationFacebook. ``` pod 'GoogleMobileAdsMediationFacebook', '6.11.0.0' ```

@chriskempson Maybe this should be done with a modifier key for "R". For example, pressing Control-R replay's the last subtitle at half speed. In practice, I find I want to...

> Hi @jbaudanza did you have any workarounds for this one? looks like they haven't fixed it yet. This PR is the workaround. Alternatively, you could try using a different...

I think right way to handle previously downloaded builds it to check for the `UpdateAvailability.DEVELOPER_TRIGGERED_UPDATE_IN_PROGRESS` state in updateAvailability. This should be more reliable than using the AsyncStorage method. I implemented...

> I actually went in a different direction in my branch. I removed all the dependencies and everything that wasn't a direct binding to the InAppUpdates API. This made it...

@GoldenSoju @SudoPlz In my opinion, the user flows between Android In-App-Updates and iOS app store checks are so different, that it's not worth trying to unify into a single API....

The problem with this is that non-malicious links will already be properly URI encoded. Calling encodeURI will double encode them. Perhaps something like this would be more appropriate: ``` if...

I addressed this in this PR: https://github.com/BonnierNews/react-native-audio-session/pull/10

Thanks for the head up. I hadn't noticed this.

Yes, I've given this some thought. I think there are two approaches: 1) Create some declarative query language, sort like MongoDb or firebase: `observable.remoteFilter({price: {$lt: 20}})` I built something this...