How to check for Mock Location in Android Marshmallow?

后端 未结 4 1616
-上瘾入骨i
-上瘾入骨i 2020-12-15 11:00

How to detect if the location is triggered with Mock Location in Android Marshmallow?

Previously, I used Settings.Secure.ALLOW_MOCK_L

相关标签:
4条回答
  • 2020-12-15 11:25

    This answer didn't seem to be work for me. extras.getBoolean(FusedLocationProviderApi.KEY_MOCK_LOCATION, false) always returned false.

    However, I did this:

    @Override
    public void onLocationChanged (Location location){
        boolean isMockLocation = location.isFromMockProvider();
    }
    

    and I started getting the correct results.

    0 讨论(0)
  • 2020-12-15 11:31

    In marshmallow you can check mock_location by using the AppOpsManager.

    Similar answer here: How to read selected mock location app in Android M - API 23

    0 讨论(0)
  • 2020-12-15 11:44

    The accepted answer is a working solution, however, I would like to add some points for the sake of completeness.

    The best built-in way to detect a mock location (not just since Marshmallow, but since API 18+) is to use Location.isFromMockProvider(), as stated in other answers and comments.

    I extensively experimented with mock locations on different devices and OS versions and came to the following conclusion:

    • The KEY_MOCK_LOCATION extra bears the exact same information as .isFromMockProvider(), i.e. .isFromMockProvider() will return true when the extra is present and false when it isn't. In other words, it provides no added value and is just a more complicated way of finding out whether an individual location was labeled as a mock by its provider. See here for more info.
      So I would definitely recommend using .isFromMockProvider().

    • Both the extra and the getter can sporadically return false negatives, i.e. the location in question is a mock but not labeled as such. This is obviously really bad for certain use cases. I have written a detailed blog post on this subject if you want to learn more.

    After struggling with Android location (and the mock labeling problem) for quite some time I published the LocationAssistant, a utility class that will reliably reject mock locations on non-rooted devices with API 15+. It also unburdens you from most of the FusedLocationProvider boilerplate. Maybe you'll find it useful for your next location-aware app project.

    0 讨论(0)
  • 2020-12-15 11:45

    If you are using FusedLocationProviderApi and have set mock location using setMockLocation(mGoogleApiClient, fakeLocation); in the callback/pendingIntentCallback the returned Location object contains KEY_MOCK_LOCATION extra, a boolean that indicates that received object is mock.

    @Override
    
    public void onLocationChanged (Location location){    
       Bundle extras = location.getExtras();
       boolean isMockLocation = extras != null && extras.getBoolean(FusedLocationProviderApi.KEY_MOCK_LOCATION, false);
    
    }
    
    0 讨论(0)
提交回复
热议问题