-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
84 lines (84 loc) · 2.02 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
{
"expo": {
"name": "Loco",
"slug": "loco",
"version": "0.1.2",
"jsEngine": "hermes",
"orientation": "portrait",
"icon": "./assets/icon.jpg",
"userInterfaceStyle": "dark",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#212832"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.antoninbeliard.loco",
"config": {
"googleMapsApiKey": "AIzaSyB7NMaMY_YmXpY_pA6Xz0jfyB5J-xAodcI"
},
"infoPlist": {
"UIBackgroundModes": [
"location"
]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#212832"
},
"icon": "./assets/icon.png",
"package": "com.antoninbeliard.loco",
"config": {
"googleMaps": {
"apiKey": "AIzaSyA7_2YtDt6Yj0H-ZlqYNZGM9qDYHY0O_c0"
}
},
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"ACCESS_BACKGROUND_LOCATION",
"FOREGROUND_SERVICE",
"FOREGROUND_SERVICE_LOCATION",
"WAKE_LOCK"
],
"softwareKeyboardLayoutMode": "pan",
"manifest": {
"service": [
{
"android:name": "com.antoninbeliard.loco.LocationService",
"android:enabled": "true",
"android:exported": "false",
"android:foregroundServiceType": "location"
}
]
}
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "eacea42d-f4e8-4a94-b43a-f19dc934865e"
}
},
"owner": "totob12",
"plugins": [
"expo-router",
"expo-asset",
"expo-font",
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location."
}
],
"./configPlugins/withForegroundService.js"
]
}
}