summaryrefslogtreecommitdiffhomepage
path: root/app/lib/platform.android.js
blob: 1dc450b3596ecff807cde42cea43a09c163d9b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// @flow
import { BackHandler, Linking } from 'react-native';
import { MobileAppBridge } from 'NativeModules';
import { version } from '../../package.json';

const log = console.log;

const getAppVersion = () => {
  return version;
};

const exit = () => {
  BackHandler.exitApp();
};

const openLink = (link: string) => {
  Linking.openURL(link);
};

const openItem = (path: string) => {
  MobileAppBridge.openItem(path);
};

export { log, exit, openLink, openItem, getAppVersion };