-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
89 lines (89 loc) · 2.29 KB
/
Copy pathapp.json
File metadata and controls
89 lines (89 loc) · 2.29 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
{
"expo": {
"name": "Stride",
"slug": "stride",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "stride",
"userInterfaceStyle": "dark",
"backgroundColor": "#10142B",
"ios": {
"icon": "./assets/images/icon.png",
"supportsTablet": false,
"bundleIdentifier": "com.afzalkhan8326.stride"
},
"android": {
"package": "com.afzalkhan8326.stride",
"adaptiveIcon": {
"backgroundColor": "#10142B",
"foregroundImage": "./assets/images/adaptive-icon.png"
},
"predictiveBackGestureEnabled": false,
"permissions": [
"android.permission.ACTIVITY_RECOGNITION",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION"
]
},
"web": {
"output": "static",
"favicon": "./assets/images/icon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"backgroundColor": "#10142B",
"image": "./assets/images/splash-icon.png",
"imageWidth": 76
}
],
[
"expo-location",
{
"locationWhenInUsePermission": "Stride matches the sky in the app to the real sun outside your window."
}
],
[
"expo-sensors",
{
"motionPermission": "Stride counts your steps to track daily movement."
}
],
"expo-notifications",
"expo-sharing",
[
"react-native-android-widget",
{
"widgets": [
{
"name": "Momentum",
"label": "Stride Momentum",
"description": "Your momentum and today's aim, at a glance",
"minWidth": "180dp",
"minHeight": "110dp",
"targetCellWidth": 3,
"targetCellHeight": 2,
"previewImage": "./assets/images/icon.png",
"resizeMode": "horizontal|vertical",
"updatePeriodMillis": 1800000
}
]
}
]
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {},
"eas": {
"projectId": "05af56de-c1fd-4746-8379-8c97928cc5bf"
}
},
"owner": "afzalkhan8326"
}
}