mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1{
2 "cli": {
3 "version": ">= 3.8.1",
4 "promptToConfigurePushNotifications": false,
5 "appVersionSource": "remote"
6 },
7 "build": {
8 "base": {
9 "node": "20.19.4"
10 },
11 "development": {
12 "extends": "base",
13 "developmentClient": true,
14 "distribution": "internal",
15 "channel": "development",
16 "ios": {
17 "simulator": true,
18 "resourceClass": "large"
19 },
20 "env": {
21 "EXPO_PUBLIC_ENV": "production"
22 }
23 },
24 "preview": {
25 "extends": "base",
26 "distribution": "internal",
27 "channel": "production",
28 "ios": {
29 "resourceClass": "large"
30 },
31 "env": {
32 "EXPO_PUBLIC_ENV": "production"
33 }
34 },
35 "production": {
36 "extends": "base",
37 "ios": {
38 "resourceClass": "large",
39 "autoIncrement": true
40 },
41 "android": {
42 "autoIncrement": true
43 },
44 "channel": "production",
45 "env": {
46 "EXPO_PUBLIC_ENV": "production"
47 }
48 },
49 "production-apk": {
50 "extends": "base",
51 "distribution": "internal",
52 "ios": {
53 "autoIncrement": false
54 },
55 "android": {
56 "autoIncrement": false
57 },
58 "channel": "production",
59 "env": {
60 "EXPO_PUBLIC_ENV": "production"
61 }
62 },
63 "testflight": {
64 "extends": "base",
65 "ios": {
66 "autoIncrement": true
67 },
68 "android": {
69 "autoIncrement": true
70 },
71 "channel": "testflight",
72 "env": {
73 "EXPO_PUBLIC_ENV": "testflight"
74 }
75 },
76 "testflight-android": {
77 "extends": "base",
78 "distribution": "internal",
79 "ios": {
80 "autoIncrement": true
81 },
82 "android": {
83 "autoIncrement": true
84 },
85 "channel": "testflight",
86 "env": {
87 "EXPO_PUBLIC_ENV": "testflight"
88 }
89 }
90 },
91 "submit": {
92 "production": {
93 "ios": {
94 "ascAppId": "6444370199"
95 }
96 }
97 }
98}