-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.config.js
More file actions
49 lines (39 loc) · 1.4 KB
/
Copy pathapp.config.js
File metadata and controls
49 lines (39 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* EAS app config (bare workflow).
*
* This file is only used by EAS Build / EAS Update — it is NOT used by the
* Metro bundler or react-native CLI at dev time.
*
* ─── ONE-TIME SETUP ─────────────────────────────────────────────────────────
* 1. npm install -g eas-cli
* 2. eas login
* 3. eas init ← auto-fills owner + projectId below
* 4. Replace YOUR_APP_STORE_APP_ID in eas.json with your App Store numeric ID
* 5. Add EXPO_TOKEN secret to your GitHub repo settings
* ────────────────────────────────────────────────────────────────────────────
*/
const pkg = require('./package.json');
const projectId = 'ca1367f7-7e15-4ec7-af34-2bf2cca2fa0b';
module.exports = {
name: 'SnapBiodata',
slug: 'snapbiodata',
// Kept in sync with package.json — run `yarn eas:version:get` to verify
version: pkg.version,
owner: 'agastyaai',
runtimeVersion: '1.0.0',
plugins: ['expo-updates'],
updates: {
url: `https://u.expo.dev/${projectId}`,
},
extra: {
eas: {
projectId,
},
},
android: {
package: 'com.snapbiodata.app',
},
ios: {
bundleIdentifier: 'com.snapbiodata.app',
},
};