run on windows + ios/android support

This commit is contained in:
AntLafI 2023-04-03 10:19:01 +02:00
parent 35cf01bbe0
commit 44b74cd902
3 changed files with 6 additions and 1 deletions

3
.gitignore vendored
View File

@ -63,3 +63,6 @@ yarn-error.log
.metro-health-check*
package-lock.json
# expo files
.expo

View File

@ -6,4 +6,4 @@ import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);
Platform.OS === 'ios' ? AppRegistry.registerComponent('main', () => App) : AppRegistry.registerComponent(appName, () => App);

View File

@ -11,6 +11,8 @@
},
"dependencies": {
"axios": "^1.3.4",
"expo": "^48.0.9",
"expo-cli": "^6.3.2",
"react": "18.2.0",
"react-native": "0.71.4"
},