Boy Callaars
Boy Callaars
I know why this is, I found out it only happens with items that aren't currently rendered (e.g. offscreen). I suggest removing the `no ref` error as the follow-up queue...
Mine are all on 11.0 and this doesn't seem to resolve this issue.
Yes, but for me, I just checked it was the Podfile not being correct. A recent git merge removed the additional code for me. I'm referring to this: ``` post_install...
@gax97 you encountered this because most likely your `android/settings.gradle` file is incorrect. Make sure to include Hermes within the if-statement: ``` if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") { include(":ReactAndroid") project(":ReactAndroid").projectDir...
The annoying thing is, this happens to us on production as well in combination with CodePush. Whenever a new version is updated the app will restart and voila, the whole...
It's typescript, @vicary
Can we give this some attention because this is preventing me of using the library (unmodified)? Personally I'd get rid of the package changes though, and just focus on the...
I think Amazon needs to whitelist your account before it will actually work. Try contacting your Amazon representative to ask to be whitelisted. And yes, I think it's supposed to...
You might want to increase the response time slightly with every incorrect attempt as well.
The first step would be to just add rate limiting in nginx through: `limit_req_zone $binary_remote_addr zone=login:10m rate=1r/s;` for example. We could advice on that.