`StrictMode` policy indicates that `LocationDisplay` loads a bitmap in the Main thread and it's slow:
`android.os.strictmode.CustomViolation: Compression of a bitmap is slow`

the policy is being setup in the Application by simply:
StrictMode.setThreadPolicy(
Builder()
.detectAll()
.penaltyLog()
.build()
)