forked from Memmy-App/memmy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eas.json
57 lines (57 loc) · 1.12 KB
/
eas.json
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
50
51
52
53
54
55
56
57
{
"cli": {
"version": ">= 3.10.2"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"env": {
"API_URL": "http://192.168.1.5:8000/api",
"APP_URL": "memmyapp://"
}
},
"simulator": {
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": true
},
"env": {
"API_URL": "http://192.168.1.5:8000/api",
"APP_URL": "memmyapp://"
}
},
"simulatorPrev": {
"distribution": "internal",
"ios": {
"simulator": true
},
"env": {
"API_URL": "https://memmy.app/api",
"APP_URL": "memmyapp://"
}
},
"preview": {
"distribution": "internal",
"env": {
"API_URL": "https://memmy.app/api",
"APP_URL": "memmyapp://"
}
},
"production": {
"autoIncrement": true,
"env": {
"API_URL": "https://memmy.app/api",
"APP_URL": "memmyapp://"
}
}
},
"submit": {
"production": {
"ios": {
"ascAppId": "6450204299"
}
}
}
}