This repository was archived by the owner on Sep 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
63 lines (63 loc) · 1.72 KB
/
app.json
File metadata and controls
63 lines (63 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"expo": {
"name": "kitApp",
"slug": "kitapp",
"version": "1.0.7",
"jsEngine": "hermes",
"owner": "osntus",
"runtimeVersion": {
"policy": "sdkVersion"
},
"orientation": "portrait",
"icon": "./assets/images/kitlog.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.ombayus.kitApp",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSPhotoLibraryUsageDescription": "This app needs access to your photo library to let you select book cover images.",
"NSCameraUsageDescription": "This app needs access to your camera to let you take book cover photos."
}
},
"splash": {
"image": "./assets/images/kitlog.png",
"resizeMode": "contain",
"backgroundColor": "#b7caaf"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/kitlog.png",
"backgroundColor": "#b7caaf"
}
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/kitlog.png"
},
"extra": {
"eas": {
"projectId": "576a42b0-261c-449e-b9d5-26cc34c7e2f0"
}
},
"updates": {
"url": "https://u.expo.dev/576a42b0-261c-449e-b9d5-26cc34c7e2f0",
"enabled": true,
"fallbackToCacheTimeout": 0,
"checkAutomatically": "ON_LOAD"
},
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "The app needs access to your photos to let you select book cover images.",
"cameraPermission": "The app needs access to your camera to let you take book cover photos."
}
]
]
}
}