commit ce1f58dbd8a374dbbc4846e62cdc10d0fc4c7161 Author: Patrick Fic <> Date: Wed Aug 5 19:42:08 2020 -0700 Created a new Expo app diff --git a/.expo-shared/assets.json b/.expo-shared/assets.json new file mode 100644 index 0000000..1e6decf --- /dev/null +++ b/.expo-shared/assets.json @@ -0,0 +1,4 @@ +{ + "12bb71342c6255bbf50437ec8f4441c083f47cdb74bd89160c15e4f43e52a1cb": true, + "40b842e832070c58deac6aa9e08fa459302ee3f9da492c7e77d93d2fbf4a56fd": true +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..73e9e94 --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +node_modules/**/* +.expo/* +npm-debug.* +*.jks +*.p8 +*.p12 +*.key +*.mobileprovision +*.orig.* +web-build/ + +# macOS +.DS_Store diff --git a/App.js b/App.js new file mode 100644 index 0000000..181f3ce --- /dev/null +++ b/App.js @@ -0,0 +1,21 @@ +import { StatusBar } from 'expo-status-bar'; +import React from 'react'; +import { StyleSheet, Text, View } from 'react-native'; + +export default function App() { + return ( + + Open up App.js to start working on your app! + + + ); +} + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: '#fff', + alignItems: 'center', + justifyContent: 'center', + }, +}); diff --git a/app.json b/app.json new file mode 100644 index 0000000..f17801e --- /dev/null +++ b/app.json @@ -0,0 +1,26 @@ +{ + "expo": { + "name": "imexmobile", + "slug": "imexmobile", + "version": "1.0.0", + "orientation": "portrait", + "icon": "./assets/icon.png", + "splash": { + "image": "./assets/splash.png", + "resizeMode": "contain", + "backgroundColor": "#ffffff" + }, + "updates": { + "fallbackToCacheTimeout": 0 + }, + "assetBundlePatterns": [ + "**/*" + ], + "ios": { + "supportsTablet": true + }, + "web": { + "favicon": "./assets/favicon.png" + } + } +} diff --git a/assets/favicon.png b/assets/favicon.png new file mode 100644 index 0000000..e75f697 Binary files /dev/null and b/assets/favicon.png differ diff --git a/assets/icon.png b/assets/icon.png new file mode 100644 index 0000000..6eaf302 Binary files /dev/null and b/assets/icon.png differ diff --git a/assets/splash.png b/assets/splash.png new file mode 100644 index 0000000..cc94f37 Binary files /dev/null and b/assets/splash.png differ diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000..2900afe --- /dev/null +++ b/babel.config.js @@ -0,0 +1,6 @@ +module.exports = function(api) { + api.cache(true); + return { + presets: ['babel-preset-expo'], + }; +}; diff --git a/package.json b/package.json new file mode 100644 index 0000000..c2e3d7a --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "main": "node_modules/expo/AppEntry.js", + "scripts": { + "start": "expo start", + "android": "expo start --android", + "ios": "expo start --ios", + "web": "expo start --web", + "eject": "expo eject" + }, + "dependencies": { + "expo": "~38.0.8", + "expo-status-bar": "^1.0.2", + "react": "~16.11.0", + "react-dom": "~16.11.0", + "react-native": "https://github.com/expo/react-native/archive/sdk-38.0.2.tar.gz", + "react-native-web": "~0.11.7" + }, + "devDependencies": { + "@babel/core": "^7.8.6", + "babel-preset-expo": "~8.1.0" + }, + "private": true +}