-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
136 lines (136 loc) · 4.57 KB
/
app.json
File metadata and controls
136 lines (136 loc) · 4.57 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"expo": {
"name": "Missile Wars",
"slug": "missilewars",
"scheme": "missile-wars",
"version": "2.0.0",
"orientation": "portrait",
"icon": "./assets/logo.png",
"userInterfaceStyle": "automatic",
"extra": {
"privacyPolicyUrl": "https://www.oakforgestudios.co.uk/missilewars/privacy-policy",
"eulaUrl": "https://www.apple.com/legal/internet-services/itunes/dev/stdeula/",
"dotenv": ".env",
"router": {
"origin": false
},
"eas": {
"projectId": "250fd3fc-22b2-411d-abfc-63f3a6b81328"
}
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.longtimenoc.missilewars",
"googleServicesFile": "./GoogleService-Info.plist",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "Your location is used to show your position on the game map and enable gameplay features like player interaction and loot collection!",
"NSSupportsLiveActivities": true,
"LSMinimumSystemVersion": "12.0",
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"permissions": [
"android.permission.RECEIVE_BOOT_COMPLETED",
"android.permission.SCHEDULE_EXACT_ALARM",
"com.android.vending.BILLING",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.INTERNET",
"android.permission.NOTIFICATIONS",
"android.permission.FOREGROUND_SERVICE",
"android.permission.FOREGROUND_SERVICE_LOCATION",
"android.permission.RECORD_AUDIO"
],
"googleServicesFile": "./google-services.json",
"config": {
"googleMaps": {
"apiKey": "@env:EXPO_PUBLIC_GOOGLE_MAPS_API_KEY"
}
},
"adaptiveIcon": {
"foregroundImage": "./assets/logo.png",
"backgroundColor": "#ffffff"
},
"package": "com.longtimenoc.missilewars"
},
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "Missile Wars needs access to your photos to customize your player profile and share your game achievements",
"cameraPermission": "Allow Missile Wars to use your camera to capture real-world targets for in-game missions and create augmented reality experiences.",
"microphonePermission": "Missile Wars uses your microphone for in-game voice chat with teammates and to record victory speeches after winning battles.",
"savePhotosPermission": "Missile Wars saves photos to your device to preserve your epic gameplay moments and shared photos."
}
],
"expo-router",
[
"expo-notifications",
{
"icon": "./assets/logo.png",
"color": "#ffffff",
"defaultChannel": "default",
"sounds": []
}
],
"expo-secure-store",
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
],
[
"expo-alternate-app-icons",
[
{
"name": "default",
"ios": "./assets/appIcons/default.png",
"android": {
"foregroundImage": "./assets/appIcons/default.png",
"backgroundColor": "#ffffff"
}
},
{
"name": "retro",
"ios": "./assets/appIcons/retro.png",
"android": {
"foregroundImage": "./assets/appIcons/retro.png",
"backgroundColor": "#ffffff"
}
},
{
"name": "graphic",
"ios": "./assets/appIcons/graphic.png",
"android": {
"foregroundImage": "./assets/appIcons/graphic.png",
"backgroundColor": "#ffffff"
}
}
]
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow Missile Wars to use your location for real-time gameplay and map features.",
"locationAlwaysPermission": "Allow Missile Wars to use your location in the background for continuous gameplay updates.",
"locationWhenInUsePermission": "Allow Missile Wars to use your location while using the app for accurate gameplay.",
"isIosBackgroundLocationEnabled": false,
"isAndroidBackgroundLocationEnabled": false,
"isAndroidForegroundServiceEnabled": true
}
],
"expo-font"
],
"owner": "osog",
"updates": {
"url": "https://u.expo.dev/250fd3fc-22b2-411d-abfc-63f3a6b81328"
}
}
}