-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
83 lines (83 loc) · 2.22 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
{
"expo": {
"name": "cura-app",
"slug": "cura-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/images/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.anonymous.cura-app"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.curaapp.cura",
"permissions": [
"android.permission.health.READ_STEPS",
"android.permission.health.READ_FLOORS_CLIMBED",
"android.permission.health.READ_DISTANCE",
"android.permission.health.READ_HEART_RATE",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"ACCESS_BACKGROUND_LOCATION"
],
"googleServicesFile": "./google-services.json"
},
"web": {
"favicon": "./src/assets/images/favicon.png"
},
"plugins": [
"@react-native-google-signin/google-signin",
"./androidManifestPlugin.js",
"react-native-health",
"react-native-health-connect",
[
"expo-notifications",
{
"icon": "./src/assets/images/notifications_cura_elder.png",
"color": "#6fd1d8",
"sounds": ["./cura_loud.wav"]
}
],
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 34,
"targetSdkVersion": 34,
"minSdkVersion": 26
}
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location.",
"isAndroidBackgroundLocationEnabled": "Allow App to use your location in the background"
}
],
[
"expo-barcode-scanner",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access camera."
}
]
],
"extra": {
"eas": {
"projectId": "c10a03af-9191-45bf-beb1-73fdd2c1bd28"
}
},
"scheme": "cura-app"
}
}