-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
73 lines (73 loc) · 1.62 KB
/
Copy pathapp.json
File metadata and controls
73 lines (73 loc) · 1.62 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
{
"expo": {
"name": "PocketGym",
"slug": "BlankProjectTSRedux",
"version": "1.0.2",
"orientation": "portrait",
"icon": "./assets/icon.png",
"scheme": "gym-scheduler-app-scheme",
"userInterfaceStyle": "light",
"backgroundColor": "#252c4a",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#252c4a"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.programmatoreincamicia.BlankProjectTSRedux"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#252c4a"
},
"permissions": [
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS"
],
"package": "com.programmatoreincamicia.pocketgym",
"versionCode": 2,
"googleServicesFile": "./google-services.json"
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-av",
{
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone."
}
],
[
"expo-notifications",
{
"sounds": [
"assets/ring.mp3"
]
}
],
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
]
],
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "5f8c1008-c3aa-48ee-989b-7e6a3c3bd38f"
}
}
}
}