Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 1e00bb9

Browse files
committed
Load intl polypill on Android
1 parent 46b4f37 commit 1e00bb9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

mobile/App.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
import 'node-libs-react-native/globals';
2+
import { Platform } from 'react-native';
3+
if (Platform.OS === 'android') {
4+
require('intl');
5+
require('intl/locale-data/jsonp/en-US');
6+
}
27

38
import App from '../src/view/main-mobile';
49

0 commit comments

Comments
 (0)