react-native/Libraries/Utilities/Platform.android.js
Kevin Gozali 06956e83cd expose IS_TESTING for Platform module
Summary: Introduced IS_TESTING flag on Platform module for android as well. This is useful for testing environment.

Reviewed By: mmmulani

Differential Revision: D4429662

fbshipit-source-id: 33711d7fb5666f0bac8aee444b71261f7f12770f
2017-01-19 14:28:30 -08:00

29 lines
768 B
JavaScript

/**
* Copyright (c) 2015-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.
*
* @providesModule Platform
* @flow
*/
'use strict';
const Platform = {
OS: 'android',
get Version() {
const AndroidConstants = require('NativeModules').AndroidConstants;
return AndroidConstants && AndroidConstants.Version;
},
get isTesting(): boolean {
const constants = require('NativeModules').AndroidConstants;
return constants && constants.isTesting;
},
select: (obj: Object) => obj.android,
};
module.exports = Platform;