-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.config.js
More file actions
45 lines (43 loc) · 1.11 KB
/
app.config.js
File metadata and controls
45 lines (43 loc) · 1.11 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
// MediPlus Expo Configuration
// This file loads environment variables for the app
import 'dotenv/config';
export default {
expo: {
name: 'MediPlus',
slug: 'MediPlus',
version: '1.0.0',
orientation: 'portrait',
icon: './assets/logo.png',
userInterfaceStyle: 'light',
newArchEnabled: true,
splash: {
image: './assets/logo.png',
resizeMode: 'contain',
backgroundColor: '#ffffff',
},
ios: {
supportsTablet: true,
bundleIdentifier: 'com.care.mediplus',
},
android: {
package: 'com.care.mediplus',
adaptiveIcon: {
foregroundImage: './assets/logo.png',
backgroundColor: '#ffffff',
},
edgeToEdgeEnabled: true,
predictiveBackGestureEnabled: false,
},
web: {
favicon: './assets/logo.png',
},
// Environment variables accessible via Constants.expoConfig.extra
extra: {
GROQ_API_KEY: process.env.GROQ_API_KEY || '',
BACKEND_URL: process.env.BACKEND_URL || 'http://localhost:5000',
eas: {
projectId: 'd5b2ead9-f9a3-4818-b993-b89285b58478',
},
},
},
};