-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathapp.json
More file actions
77 lines (77 loc) · 2.24 KB
/
Copy pathapp.json
File metadata and controls
77 lines (77 loc) · 2.24 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"expo": {
"scheme": "private-mind",
"name": "Private Mind",
"slug": "private-mind",
"version": "1.1.6",
"orientation": "portrait",
"icon": "./assets/icons/icon.png",
"userInterfaceStyle": "automatic",
"plugins": [
[
"expo-splash-screen",
{
"backgroundColor": "#3D61D6",
"imageWidth": 140,
"image": "./assets/icons/splash_icon.png"
}
],
[
"expo-font",
{
"fonts": [
"node_modules/@expo-google-fonts/dm-sans/400Regular/DMSans_400Regular.ttf",
"node_modules/@expo-google-fonts/dm-sans/500Medium/DMSans_500Medium.ttf",
"node_modules/@expo-google-fonts/dm-sans/600SemiBold/DMSans_600SemiBold.ttf",
"node_modules/@expo-google-fonts/dm-sans/400Regular_Italic/DMSans_400Regular_Italic.ttf",
"node_modules/@expo-google-fonts/dm-sans/500Medium_Italic/DMSans_500Medium_Italic.ttf",
"node_modules/@expo-google-fonts/dm-sans/600SemiBold_Italic/DMSans_600SemiBold_Italic.ttf"
]
}
],
"expo-router",
[
"expo-sqlite",
{
"enableFTS": true,
"useSQLCipher": true,
"android": {
"enableFTS": false,
"useSQLCipher": false
},
"ios": {
"customBuildFlags": [
"-DSQLITE_ENABLE_DBSTAT_VTAB=1 -DSQLITE_ENABLE_SNAPSHOT=1"
]
}
}
],
[
"react-native-audio-api",
{
"iosBackgroundMode": false,
"iosMicrophonePermission": "This app requires access to the microphone to record audio.",
"androidForegroundService": false,
"androidPermissions": ["android.permission.RECORD_AUDIO"]
}
],
"expo-asset",
"expo-localization",
"expo-sharing"
],
"newArchEnabled": true,
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.swmansion.privatemind",
"appleTeamId": "B357MU264T"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icons/icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.swmansion.privatemind",
"edgeToEdgeEnabled": true
}
}
}