-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
126 lines (126 loc) · 3.69 KB
/
app.json
File metadata and controls
126 lines (126 loc) · 3.69 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
{
"expo": {
"name": "Fuel Up",
"slug": "fuel-up",
"scheme": "fuelup",
"version": "1.0.0",
"plugins": [
[
"expo-build-properties",
{
"ios": {
"buildReactNativeFromSource": true
}
}
],
"./plugins/withProgressiveBlurNativeBuild",
"expo-font",
"expo-notifications",
[
"expo-location",
{
"locationWhenInUsePermission": "Fuel Up uses your precise location to find the closest cheapest gas around you.",
"locationAlwaysAndWhenInUsePermission": "Fuel Up uses your precise location in the background to predict where and when you should stop for gas.",
"locationAlwaysPermission": "Fuel Up uses your precise location in the background to predict where and when you should stop for gas.",
"isIosBackgroundLocationEnabled": true,
"isAndroidBackgroundLocationEnabled": true,
"isAndroidForegroundServiceEnabled": true
}
],
[
"expo-widgets",
{
"groupIdentifier": "group.com.anthonyh.fuelup",
"enablePushNotifications": true,
"widgets": [
{
"name": "PriceDropActivity",
"displayName": "Fuel Price Drop",
"description": "Live fuel price updates and timers",
"supportedFamilies": [
"systemSmall",
"systemMedium"
]
}
]
}
],
"expo-video",
"expo-router"
],
"orientation": "portrait",
"icon": "./assets/fuelup-icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash-light.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF",
"dark": {
"image": "./assets/splash-dark.png",
"backgroundColor": "#000000"
}
},
"ios": {
"splash": {
"image": "./assets/splash-light.png",
"resizeMode": "contain",
"backgroundColor": "#FFFFFF",
"dark": {
"image": "./assets/splash-dark.png",
"backgroundColor": "#000000"
}
},
"icon": "./fuelup.icon",
"supportsTablet": true,
"bundleIdentifier": "com.anthonyh.fuelup",
"entitlements": {
"aps-environment": "development"
},
"infoPlist": {
"NSMotionUsageDescription": "Fuel Up uses motion signals to understand when you are driving toward a likely fuel stop.",
"ITSAppUsesNonExemptEncryption": false,
"CADisableMinimumFrameDurationOnPhone": true,
"LSApplicationQueriesSchemes": [
"comgooglemaps"
]
}
},
"android": {
"package": "com.anthonyh.fuelup",
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"ACCESS_BACKGROUND_LOCATION",
"FOREGROUND_SERVICE",
"FOREGROUND_SERVICE_LOCATION",
"ACTIVITY_RECOGNITION"
]
},
"extra": {
"supabase": {
"url": "https://vjindchxfebaltbslqwc.supabase.co",
"key": "sb_publishable_PXXDbGA0iU5sOiNHe1hqTw_Ms3pE0cm"
},
"eas": {
"build": {
"experimental": {
"ios": {
"appExtensions": [
{
"targetName": "ExpoWidgetsTarget",
"bundleIdentifier": "com.anthonyh.fuelup.ExpoWidgetsTarget",
"entitlements": {
"com.apple.security.application-groups": [
"group.com.anthonyh.fuelup"
]
}
}
]
}
}
},
"projectId": "ba30e199-db8a-4094-b10b-230e5fdf8cc3"
}
}
}
}