Mozer Dmitry

Results 6 comments of Mozer Dmitry

Before generating icons, try using [svg-fixer](https://github.com/oslllo/svg-fixer). A similar error can happen in all generators, the problem is described in more detail [here](https://github.com/oslllo/svg-fixer#errors).

Дополню: Проблема повторяется только на ios и при "вторичной" инициализации (`weak var weakSelf = self`). После инициализации срабатывает `weakSelf?.handle`, который вызывает `moveCamera`, а он уже `onCameraPositionChanged` . На андроид такого...

При запуске ios версии мапкит, от контроллера приходит координата с причиной application. На android mapkit такого поведения не наблюдается. Хотелось бы консистентности, либо в обоих случаях приходит, либо не приходит.

> In my app native ads are show fine but when I click on this it's don't create any action native ads are not click able which platform?

forEach doesn’t wait for callback return, it just launches them and returns. If you are going to perform async operations inside forEach, you have to use «for in» instead. Don’t:...