-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
83 lines (83 loc) · 2.1 KB
/
app.json
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
74
75
76
77
78
79
80
81
82
83
{
"expo": {
"name": "Noisify",
"slug": "noisify",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/images/icon.png",
"scheme": "noisify",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSCameraUsageDescription": "$(PRODUCT_NAME) needs access to your Camera."
},
"bundleIdentifier": "com.mrevanzak.noisify"
},
"android": {
"icon": "./src/assets/images/icon.png",
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/icon.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"android.permission.CAMERA",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.ACCESS_MEDIA_LOCATION",
"android.permission.RECORD_AUDIO"
],
"package": "com.mrevanzak.noisify"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./src/assets/images/icon.png"
},
"plugins": [
"expo-router",
[
"react-native-vision-camera",
{
"cameraPermissionText": "$(PRODUCT_NAME) needs access to your Camera."
}
],
[
"expo-media-library",
{
"photosPermission": "Allow $(PRODUCT_NAME) to access your photos.",
"savePhotosPermission": "Allow $(PRODUCT_NAME) to save photos.",
"isAccessMediaLocationEnabled": true
}
],
"expo-image-picker",
[
"expo-build-properties",
{
"android": {
"minSdkVersion": 26
}
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "e38fc18c-87a3-4d30-bd21-4705a3df83f2"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/4548f797-7106-4030-b88f-6a259230b2b6"
}
}
}