Files
react-native/Libraries/Utilities/BackAndroid.js
T
Eli White 8f5ebe5952 Convert react-native-github/Libraries to let/const
Reviewed By: sahrens

Differential Revision: D7956042

fbshipit-source-id: 221851aa311f3cdd6326497352b366048db0a1bb
2018-05-10 16:16:35 -07:00

47 lines
1.2 KiB
JavaScript

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* BackAndroid has been moved to BackHandler. This stub calls BackHandler methods
* after generating a warning to remind users to move to the new BackHandler module.
*
*/
'use strict';
const BackHandler = require('BackHandler');
const warning = require('fbjs/lib/warning');
/**
* Deprecated. Use BackHandler instead.
*/
const BackAndroid = {
exitApp: function() {
warning(false, 'BackAndroid is deprecated. Please use BackHandler instead.');
BackHandler.exitApp();
},
addEventListener: function (
eventName: BackPressEventName,
handler: Function
): {remove: () => void} {
warning(false, 'BackAndroid is deprecated. Please use BackHandler instead.');
return BackHandler.addEventListener(eventName, handler);
},
removeEventListener: function(
eventName: BackPressEventName,
handler: Function
): void {
warning(false, 'BackAndroid is deprecated. Please use BackHandler instead.');
BackHandler.removeEventListener(eventName, handler);
},
};
module.exports = BackAndroid;