Logcat full of "input svInfo.flags is 8" while app is running Logcat full of "input svInfo.flags is 8" while app is running android android

Logcat full of "input svInfo.flags is 8" while app is running


There is a much simpler solution. in your AVD simply go to settings->location and uncheck use location.Location service image


You should create Virtual Device in AVD manager without GPS sensor.

new device

and uncheck GPS

uncheck GPS

Errors will gone.


I needed GPS enabled and could not disable Location Services, so I used this regex with a negative lookahead in logcats search filter:

^(?!.*input svInfo\.flags is 8)

This selects everything not containing the end of the error message ("input svInfo.flags is 8"), but displays everything else.

The search filter should be right above the log output. You might need to activate a selct box reading "regex".