Summary: Added button to reset Android SDK path to default + fixed default SDK path on Windows which I introduced in a previous diff and which before might be wrongly resolved to roaming data instead of local data folder Reviewed By: jknoxville Differential Revision: D19498899 fbshipit-source-id: e10865b528f55ea6b56873bdf9369c4b60dca89f
26 lines
530 B
TypeScript
26 lines
530 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
module.exports = {
|
|
remote: {
|
|
process: {
|
|
env: {},
|
|
},
|
|
app: {
|
|
getPath: (path: string) => `/${path}`,
|
|
getAppPath: process.cwd,
|
|
getVersion: () => '0.9.99',
|
|
relaunch: () => {},
|
|
exit: () => {},
|
|
},
|
|
getCurrentWindow: () => ({isFocused: () => true}),
|
|
},
|
|
ipcRenderer: {},
|
|
};
|