-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
73 lines (70 loc) · 1.64 KB
/
app.config.ts
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import type { ExpoConfig } from "@expo/config-types";
const config: ExpoConfig = {
name: "EatInsight",
slug: "nutrition-mobile",
version: "1.0.0",
orientation: "portrait",
icon: "./src/assets/images/icon.png",
scheme: "myapp",
userInterfaceStyle: "automatic",
splash: {
image: "./src/assets/images/splash.png",
resizeMode: "contain",
backgroundColor: "#F5C998",
},
ios: {
supportsTablet: false,
bundleIdentifier: "com.nutrition.mobile",
infoPlist: {
NSAppTransportSecurity: { NSAllowsArbitraryLoads: true },
},
},
android: {
package: "com.nutrition.mobile",
adaptiveIcon: {
foregroundImage: "./src/assets/images/adaptive-icon.png",
backgroundColor: "#ffffff",
},
},
web: {
bundler: "metro",
output: "static",
favicon: "./src/assets/images/favicon.png",
},
experiments: {
typedRoutes: true,
},
extra: {
eas: {
projectId: "d68b65a6-b470-4c9e-91b0-b60d857b87c3",
},
},
plugins: [
"expo-router",
[
"expo-build-properties",
{
android: {
compileSdkVersion: 34,
targetSdkVersion: 34,
buildToolsVersion: "34.0.0",
kotlinVersion: "1.9.0",
},
ios: {
deploymentTarget: "13.4",
},
},
],
[
"react-native-vision-camera",
{
cameraPermissionText: "$(PRODUCT_NAME) needs access to your Camera.",
// optionally, if you want to record audio:
enableMicrophonePermission: true,
microphonePermissionText:
"$(PRODUCT_NAME) needs access to your Microphone.",
},
],
],
};
export default config;