Skip to content

Commit a2b94c7

Browse files
committed
chore: configure eas
1 parent 776ac28 commit a2b94c7

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

apps/discovery/app.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ module.exports = {
1919
},
2020
assetBundlePatterns: ['**/*'],
2121
ios: {
22-
supportsTablet: true
22+
supportsTablet: false,
23+
bundleIdentifier: 'org.nativehtml.discovery',
24+
buildNumber: '1.0.0'
25+
},
26+
android: {
27+
package: 'org.nativehtml.discovery',
28+
versionCode: 1
2329
},
2430
web: {
2531
favicon: './assets/images/favicon.png'

apps/discovery/eas.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"build": {
3+
"development": {
4+
"developmentClient": true,
5+
"distribution": "internal"
6+
},
7+
"preview": {
8+
"distribution": "internal"
9+
},
10+
"production": {}
11+
},
12+
"submit": {
13+
"production": {}
14+
}
15+
}

apps/discovery/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { registerRootComponent } from 'expo';
2+
import App from './src/App';
3+
4+
registerRootComponent(App);

apps/discovery/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "discovery",
3-
"main": "node_modules/expo/AppEntry.js",
3+
"main": "index.js",
44
"scripts": {
55
"start": "expo start",
66
"android": "expo start --android",

0 commit comments

Comments
 (0)