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

const log = console.log;

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

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

const openItem = (path: string) => {

};

export { log, exit, openLink, openItem };