-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
72 lines (72 loc) · 2.07 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
{
"expo": {
"name": "RunningTime",
"slug": "running-time",
"scheme": "running-time",
"version": "1.2.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#6b7280"
}
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.vedmant.runningtime",
"infoPlist": {
"UIBackgroundModes": [
"location",
"fetch"
],
"NSLocationWhenInUseUsageDescription": "This app requires access to your location when open.",
"NSLocationAlwaysAndWhenInUseUsageDescription": "This app requires access to your location even when closed.",
"NSLocationAlwaysUsageDescription": "This app requires access to your location when open.",
"deploymentTarget": "14"
}
},
"android": {
"versionCode": 3145733,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.vedmant.runningtime",
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"ACCESS_BACKGROUND_LOCATION",
"android.permission.RECEIVE_BOOT_COMPLETED",
"android.permission.WAKE_LOCK",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.FOREGROUND_SERVICE",
"android.permission.ACCESS_BACKGROUND_LOCATION"
]
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "678b95b0-2b7f-4c48-8fc2-4ce227c10a82"
}
},
"owner": "vedmant",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/678b95b0-2b7f-4c48-8fc2-4ce227c10a82"
}
}
}