-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
96 lines (96 loc) · 2.25 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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"expo": {
"name": "myPI",
"slug": "mypi",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/main/myPIOnly.png",
"userInterfaceStyle": "light",
"plugins": [
[
"expo-notifications",
{
"icon": "./assets/main/myPIOnly.png",
"color": "#FFFFFF"
}
],
"expo-secure-store"
],
"splash": {
"image": "./assets/main/pip-splash.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "<add-yours-here>",
"infoPlist": {
"UIUserInterfaceStyle": "Light"
},
"privacyManifests": {
"NSPrivacyAccessedAPITypes": [
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryUserDefaults",
"NSPrivacyAccessedAPITypeReasons": [
"CA92.1"
]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategorySystemBootTime",
"NSPrivacyAccessedAPITypeReasons": [
"35F9.1"
]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryDiskSpace",
"NSPrivacyAccessedAPITypeReasons": [
"E174.1",
"85F4.1"
]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryFileTimestamp",
"NSPrivacyAccessedAPITypeReasons": [
"0A2A.1",
"3B52.1"
]
}
]
}
},
"android": {
"package": "<add-yours-here>",
"versionCode": 1,
"permissions": [
"INTERNET"
],
"googleServicesFile": "./google-services.json",
"config": {
"googleMaps": {
"apiKey": "<add-yours-here>"
}
}
},
"androidStatusBar": {
"backgroundColor": "#FFFFFF"
},
"web": {
"favicon": "./assets/main/myPIOnly.png"
},
"extra": {
"eas": {
"projectId": "<add-yours-here>"
}
},
"owner": "<add-yours-here>",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "<add-yours-here>"
}
}
}