-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.js
42 lines (41 loc) · 854 Bytes
/
app.config.js
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
import 'dotenv/config';
export default {
expo: {
name: 'ia-responde',
slug: 'ia-responde',
version: '1.0.0',
orientation: 'portrait',
icon: '',
scheme: 'ia-responde',
userInterfaceStyle: 'automatic',
newArchEnabled: true,
ios: {
supportsTablet: true,
},
android: {
adaptiveIcon: {
foregroundImage: '',
backgroundColor: '#ffffff',
},
},
web: {
bundler: 'metro',
},
plugins: ['expo-router'],
experiments: {
typedRoutes: true,
},
extra: {
OPEN_IA_API_KEY: process.env.OPEN_IA_API_KEY,
eas: {
projectId: 'd34507d7-c465-4ddf-b9c0-b0b5aad3c7a8',
},
},
updates: {
url: 'https://u.expo.dev/d34507d7-c465-4ddf-b9c0-b0b5aad3c7a8',
},
runtimeVersion: {
policy: 'appVersion',
},
},
};