Oleksii

Results 5 comments of Oleksii

In TranslationMap.m line 96 `JreStrcat("$$", locale, @".txt")` returns locale file name without `/` When you change it to `JreStrcat("$$$", @"/", locale, @".txt")` it loads translation successfully.

Yes, it's really inconvenient on Android in comparison to iOS where it's possible to set environment parameter in runtime. ``` var newArguments = ProcessInfo.processInfo.arguments newArguments.append("-FIRDebugEnabled") ProcessInfo.processInfo.setValue(newArguments, forKey: "arguments") ``` Our...

My app is affected as well, it's the topmost crash in the moment.

> We’re now in the process of rushing out app updates with the latest Facebook SDK version, which seems to resolve this. @doshirj Could you please confirm that updating SDK...

In my case I was calling AwaitKit code from a native `Task` Setting Task priority to `.medium` eliminated the warning.