In XCode, each time the application is rendered, the issues log consistently shows the following:
This means that there exists a method or function that is long-running or blocking, which can lead to unresponsiveness in the user interface (UI) if executed on the main thread. Instead of invoking a method directly that might cause UI unresponsiveness, this warning suggests that tasks related to location services should handled asynchronously. The application's functionality seems unaffected by it as of now, but things may change.
In XCode, each time the application is rendered, the issues log consistently shows the following:
This means that there exists a method or function that is long-running or blocking, which can lead to unresponsiveness in the user interface (UI) if executed on the main thread. Instead of invoking a method directly that might cause UI unresponsiveness, this warning suggests that tasks related to location services should handled asynchronously. The application's functionality seems unaffected by it as of now, but things may change.