Jonathan Ehwald

Results 30 comments of Jonathan Ehwald

It looks like to two commits [Dev dependies to yarn](https://github.com/invertase/react-native-firebase/pull/6472/commits/8a1016c8ac2ca1b5fbdbb89551619305660e375c) and [yarn.lock](https://github.com/invertase/react-native-firebase/pull/6472/commits/92c24a6a22184e10cdba35c4b10beee9ad49bba2) are not associated with your email address. I would try to [set up your email address in git](https://docs.github.com/en/account-and-profile/setting-up-and-managing-your-personal-account-on-github/managing-email-preferences/setting-your-commit-email-address#setting-your-commit-email-address-in-git)...

Hey, just some context: `adView.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);` was added in 835bdec6aff843e2ef21250137927fb004750aeb to prevent a crash described [here](https://github.com/facebook/react-native/issues/32649#issuecomment-990968256).

@ugurdalkiran Mike is not using this module, it's up to us to add a feature if we want it. Do you have any experience with fabric? I'm wondering whether old...

There is a TODO in the code suggesting the fluid size probably never worked: https://github.com/invertase/react-native-google-mobile-ads/blob/e7ec4ed669ee05a0db2ae9c81ee23b5e01f8f901/android/src/main/java/io/invertase/googlemobileads/ReactNativeGoogleMobileAdsBannerAdViewManager.java#L173 You can make your own fluid banner though. This can be done by requesting an...

When I attempt to run `subscription MySubscription { __typename count}` with graphiql it complains `Subscription "MySubscription" must select only one top level field`. [This graphql.js validation rule](https://github.com/graphql/graphql-js/blob/261b99b0a643561ccfb217fe8ac0c2ac16b2c5d3/src/validation/rules/SingleFieldSubscriptions.js#L22-L26) confirms that only...

> The banner ads in my emulator is "Test Ads", I not sure how to make it become a real ads instead of test ads. That's expected. Emulators are automatically...

I have set some time aside to investigate this issue this weekend. Feel free to share any information you found during debugging @parasdaryanani, could potentially save me a lot of...

Thanks Mike! I'm aware of OSX-KVM. So far I didn't think about using the vscode remote-ssh feature though. That could make things a lot more confortable. So thanks for that...

I actually spent multiple hours investigating this issue last weekend. However, the results are slightly underwhelming. Here is what I did: ### 1. Validate ads are not loading in our...

To me it looks like the ad is actualy just loaded once and thus can only be shown once. Maybe adding something like the following could work? ```js React.useEffect(() =>...