Skip to content

Commit 772abbb

Browse files
committed
feat: basic project
1 parent fd9fdc0 commit 772abbb

14 files changed

+6301
-225
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
# dependencies
44
node_modules/
5+
packages-lock.json
6+
android
7+
ios
8+
.vim
59

610
# Expo
711
.expo/

App.tsx

Lines changed: 0 additions & 20 deletions
This file was deleted.

app.json

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,32 @@
1313
"backgroundColor": "#ffffff"
1414
},
1515
"ios": {
16-
"supportsTablet": true
16+
"supportsTablet": true,
17+
"bundleIdentifier": "com.timmyjose.expopreviewqractiondemo"
1718
},
1819
"android": {
1920
"adaptiveIcon": {
2021
"foregroundImage": "./assets/adaptive-icon.png",
2122
"backgroundColor": "#ffffff"
22-
}
23+
},
24+
"package": "com.timmyjose.expopreviewqractiondemo"
2325
},
2426
"web": {
2527
"favicon": "./assets/favicon.png"
26-
}
28+
},
29+
"extra": {
30+
"eas": {
31+
"projectId": "e84d3565-2d45-471b-a612-dae344477cdb"
32+
}
33+
},
34+
"runtimeVersion": {
35+
"policy": "appVersion"
36+
},
37+
"updates": {
38+
"url": "https://u.expo.dev/e84d3565-2d45-471b-a612-dae344477cdb"
39+
},
40+
"plugins": [
41+
"expo-build-properties"
42+
]
2743
}
2844
}

eas.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"cli": {
3+
"version": ">= 14.5.0",
4+
"appVersionSource": "remote"
5+
},
6+
"build": {
7+
"development": {
8+
"developmentClient": true,
9+
"distribution": "internal",
10+
"channel": "development"
11+
},
12+
"preview": {
13+
"distribution": "internal",
14+
"channel": "preview"
15+
},
16+
"production": {
17+
"autoIncrement": true,
18+
"channel": "production"
19+
}
20+
},
21+
"submit": {
22+
"production": {}
23+
}
24+
}

index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { registerRootComponent } from 'expo';
1+
import { registerRootComponent } from 'expo'
22

3-
import App from './App';
3+
import App from './src/App'
44

55
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
66
// It also ensures that whether you load the app in Expo Go or in a native build,
77
// the environment is set up appropriately
8-
registerRootComponent(App);
8+
registerRootComponent(App)

metro.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Learn more https://docs.expo.io/guides/customizing-metro
2+
const { getDefaultConfig } = require('expo/metro-config');
3+
4+
/** @type {import('expo/metro-config').MetroConfig} */
5+
const config = getDefaultConfig(__dirname);
6+
7+
module.exports = config;

0 commit comments

Comments
 (0)