-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
69 lines (69 loc) · 1.68 KB
/
app.json
File metadata and controls
69 lines (69 loc) · 1.68 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
{
"expo": {
"name": "HabitMates",
"slug": "HabitMates",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/hm-logo-ios.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/hm-logo-ios.png",
"resizeMode": "contain",
"backgroundColor": "#059669"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.habitmates.app",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
},
"icon": "./assets/images/hm-logo-ios.png"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/hm-logo-android.png",
"backgroundColor": "#059669"
},
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO"
],
"package": "com.habitmates.app"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-camera",
{
"cameraPermission": "Allow HabitMates to access your camera",
"microphonePermission": "Allow HabitMates to access your microphone",
"recordAudioAndroid": true
}
],
[
"expo-image-picker",
{
"photosPermission": "The app needs access to your photos to set your profile picture."
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "fe5f6407-6b7a-4b9a-a4bf-727ed4dea308"
}
}
}
}