frontend: link with eas
Parents:
c49da6a2 file(s) changed
- frontend/app.json +12 -2
- frontend/eas.json +21 -0
frontend/app.json
@@ -16,7 +16,8 @@ "backgroundImage": "./assets/images/android-icon-background.png",
16 16 "monochromeImage": "./assets/images/android-icon-monochrome.png"
17 17 },
18 18 "edgeToEdgeEnabled": true,
19 - "predictiveBackGestureEnabled": false
19 + "predictiveBackGestureEnabled": false,
20 + "package": "com.eletrotupi.orbit"
20 21 },
21 22 "plugins": [
22 23 "expo-router",
@@ -69,10 +70,19 @@ }
69 70 ]
70 71 }
71 72 ],
73 + "expo-secure-store",
74 + "expo-web-browser"
72 75 ],
73 76 "experiments": {
74 77 "typedRoutes": true,
75 78 "reactCompiler": true
76 - }
79 + },
80 + "extra": {
81 + "router": {},
82 + "eas": {
83 + "projectId": "9e045ebc-b4b3-4fc9-959f-d6db2f12259c"
84 + }
85 + },
86 + "owner": "eletrotupi"
77 87 }
78 88 }
frontend/eas.json
@@ -0,0 +1,21 @@
1 + {
2 + "cli": {
3 + "version": ">= 18.11.0",
4 + "appVersionSource": "remote"
5 + },
6 + "build": {
7 + "development": {
8 + "developmentClient": true,
9 + "distribution": "internal"
10 + },
11 + "preview": {
12 + "distribution": "internal"
13 + },
14 + "production": {
15 + "autoIncrement": true
16 + }
17 + },
18 + "submit": {
19 + "production": {}
20 + }
21 + }