-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
71 lines (71 loc) · 2.18 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
{
"expo": {
"name": "S2CITIES",
"slug": "s2cities",
"owner": "s2cities-asp",
"description": "Safe and Smart Cities. For safety, for women, for everybody.",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/new_app_icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/splash_screen.png",
"resizeMode": "cover",
"backgroundColor": "#2B68FF"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.s2citiesasp.s2cities"
},
"android": {
"icon": "./assets/images/new_android_app_icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/images/new_android_app_icon_with_transparent_margin.png",
"backgroundColor": "#1E1E1E"
},
"permissions": [
"android.permission.RECORD_AUDIO",
"android.permission.MODIFY_AUDIO_SETTINGS",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.FOREGROUND_SERVICE",
"android.permission.CAMERA"
],
"package": "com.s2citiesasp.s2cities",
"googleServicesFile": "./google-services.json"
},
"plugins": [
[
"expo-av",
{
"microphonePermission": "Allow $(PRODUCT_NAME) to access your microphone."
}
],
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location."
}
],
[
"expo-camera",
{
"cameraPermission": "Allow $(PRODUCT_NAME) to access your camera."
}
],
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you share them with your friends."
}
]
],
"extra": {
"eas": {
"projectId": "32228617-e498-47fe-9973-67050310ba93"
}
}
}
}