Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

package.json updates #217

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 10 additions & 12 deletions eas.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
{
"cli": {
"appVersionSource": "remote",
"version": ">= 3.13.3"
"version": ">= 5.9.3",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {
"distribution": "store",
"autoIncrement": true
}
},
"submit": {
"production": {
"android": {
"track": "internal"
},
"ios": {
"ascAppId": "1632619020",
"appleTeamId": "48N3J4V5KM"
}
}
"production": {}
}
}
8 changes: 8 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { registerRootComponent } from 'expo'

Check warning on line 1 in index.js

View workflow job for this annotation

GitHub Actions / test-and-lint

Missing @file

import App from './App'

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