mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
c6024f6391
Summary: Since API 18, Android locations have had the `isFromMockProvider()` function, to verify the validity of a provided location. This was one of many methods one could verify location data, but as of Marshmallow, the other ways of detecting if "Mock Locations" is on in developer settings has been deprecated or defunct. This means some devices can only detect location mocking by exposing the method on the location object. This change provides that exposure. Closes https://github.com/facebook/react-native/pull/9390 Differential Revision: D3858205 Pulled By: bestander fbshipit-source-id: 3bae429cc0596ea01926c5be204f4403e4a2414f
15 lines
406 B
JavaScript
15 lines
406 B
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
declare class Position {
|
|
coords: Coordinates,
|
|
timestamp: number,
|
|
mocked: boolean,
|
|
}
|