Taurius

Results 16 comments of Taurius

I noticed the first batch of items which account for `initialNumToRender` will never get dismounted. Would it be possible to flag the current active item (the one being dragged) as...

Same problem for me on 1.0.7 While debugging, I found that it fails due to `ConsentInformation.ServerResponse.companies` being `null`. What could that mean?

OK, found the problem, at least in my case it was my fault. I was sending the admob app id instead of the account's publisher id. It's a bit confusing...

Have the same issue, cannot reproduce and I am not using reanimated directly. The only place it is used is by the package react-native-draggable-flatlist. Crashes are not limited to samsung...

One silly workaround I found is to do it like so: 1. Make sure ATT message is turned off in Admob and handle the ATT message manually. 2. Even if...

> I just made a PR to add a getGdprApplies method. To understand if youre in EEA. This might help? Thank you, @dylancom This seems to be the correct and...

Unfortunately it looks like the `IABTCF_gdprApplies` value is 0 when `tagForUnderAgeOfConsent` is `true`. I guess there is not much the library can do then.

> You need to make sure to call requestinfoupdate before getting gdprApplies. ```js await AdsConsent.requestInfoUpdate(); await AdsConsent.getGdprApplies(); // === true ``` ```js await AdsConsent.requestInfoUpdate({ tagForUnderAgeOfConsent: true }); await AdsConsent.getGdprApplies(); //...