app.json
1{
2 "expo": {
3 "name": "Luxray",
4 "slug": "luxray",
5 "version": "1.0.0",
6 "orientation": "portrait",
7 "icon": "./assets/images/icon.png",
8 "scheme": [
9 "luxray",
10 "app.luxray.dev"
11 ],
12 "userInterfaceStyle": "automatic",
13 "newArchEnabled": true,
14 "ios": {
15 "supportsTablet": true,
16 "bundleIdentifier": "app.luxray.dev"
17 },
18 "android": {
19 "adaptiveIcon": {
20 "backgroundColor": "#E6F4FE",
21 "foregroundImage": "./assets/images/android-icon-foreground.png",
22 "backgroundImage": "./assets/images/android-icon-background.png",
23 "monochromeImage": "./assets/images/android-icon-monochrome.png"
24 },
25 "edgeToEdgeEnabled": true,
26 "predictiveBackGestureEnabled": false,
27 "package": "app.luxray.dev"
28 },
29 "web": {
30 "output": "server",
31 "favicon": "./assets/images/favicon.png"
32 },
33 "plugins": [
34 [
35 "expo-secure-store",
36 {
37 "configureAndroidBackup": true,
38 "faceIDPermission": "Allow $(PRODUCT_NAME) to access your Face ID biometric data."
39 }
40 ],
41 "expo-router",
42 [
43 "expo-splash-screen",
44 {
45 "image": "./assets/images/splash-icon.png",
46 "imageWidth": 200,
47 "resizeMode": "contain",
48 "backgroundColor": "#ffffff",
49 "dark": {
50 "backgroundColor": "#000000"
51 }
52 }
53 ],
54 "@react-native-community/datetimepicker",
55 "expo-font"
56 ],
57 "experiments": {
58 "typedRoutes": true,
59 "reactCompiler": true
60 }
61 }
62}