-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.config.js
More file actions
39 lines (38 loc) · 1.04 KB
/
app.config.js
File metadata and controls
39 lines (38 loc) · 1.04 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
export default {
expo: {
name: "MyNewExhibitionApp",
slug: "MyNewExhibitionApp",
version: "1.0.0",
orientation: "portrait",
icon: "./assets/icon.png",
userInterfaceStyle: "light",
splash: {
image: "./assets/splash.png",
resizeMode: "contain",
backgroundColor: "#ffffff"
},
ios: {
supportsTablet: true,
bundleIdentifier: "com.sunenglishjr.MyNewExhibitionApp",
"infoPlist": {
"NSCameraUsageDescription": "This app needs access to your camera to allow photo capture.",
"NSLocationWhenInUseUsageDescription": "This app requires your location to provide relevant exhibition information."
}
},
android: {
adaptiveIcon: {
foregroundImage: "./assets/adaptive-icon.png",
backgroundColor: "#ffffff"
}
},
web: {
favicon: "./assets/favicon.png"
},
extra: {
apiUrl: process.env.REACT_APP_API_URL, // EAS Secret for API URL
eas: {
projectId: "e7bb70f9-613b-438f-9800-3b779b16dc04"
}
}
}
};