Skip to content

Commit 69b5477

Browse files
refactor: cleanup
1 parent d4b8282 commit 69b5477

19 files changed

+16694
-2365
lines changed

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ import com.android.build.OutputFile
8383
*/
8484

8585
project.ext.react = [
86-
enableHermes: false, // clean and rebuild if changing
86+
enableHermes: true, // clean and rebuild if changing
8787
]
8888

8989
apply from: "../../node_modules/react-native/react.gradle"

example/index.web.js

Whitespace-only changes.

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"react-native-localize": "^2.0.1",
2929
"react-native-paper": "^4.5.0",
3030
"react-native-vector-icons": "https://github.com/RichardLindhout/react-native-vector-icons",
31-
"react-native-web": "^0.14.8",
31+
"react-native-web": "^0.15.0",
3232
"react-scripts": "3.4.3"
3333
},
3434
"devDependencies": {

example/src/App.native.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { AppRegistry } from 'react-native';
2+
import App from './AppInner';
3+
import { name as appName } from '../app.json';
4+
import Icon from 'react-native-vector-icons/MaterialCommunityIcons';
5+
Icon.loadFont();
6+
AppRegistry.registerComponent(appName, () => App);

0 commit comments

Comments
 (0)