-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
70 lines (70 loc) · 2.17 KB
/
app.json
File metadata and controls
70 lines (70 loc) · 2.17 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
{
"expo": {
"name": "SalgoDe",
"slug": "SalgoDe",
"privacy": "public",
"scheme": "salgode",
"sdkVersion": "35.0.0",
"platforms": ["ios", "android", "web"],
"version": "1.3.2",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash_text.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"config": {
"googleMapsApiKey": "AIzaSyA7sn4e4Xs4LwpKzXOt1Cm1h7BaclwBMcQ"
},
"supportsTablet": true,
"bundleIdentifier": "app.salgode.salgode",
"buildNumber": "19",
"infoPlist": {
"NSCameraUsageDescription": "Esta app utiliza tu cámara para poder sacar una selfie.",
"NSLocationWhenInUseUsageDescription": "Esta app utiliza tu ubicación para mejorar la usabilidad de la misma y que puedas encontrar el punto de encuentro más cercano a tu posición",
"NSPhotoLibraryUsageDescription": "Esta app requiere acceso a tu biblioteca de imágenes para poder subir una imagen a tu perfil de usuario."
}
},
"android": {
"config": {
"googleMaps": {
"apiKey": "AIzaSyAat5ZwVNMN-m3Mgj8boi-8WvbLOqI4Gkk"
}
},
"package": "cl.salgode.salgode",
"versionCode": 11,
"permissions": [
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE",
"CAMERA",
"ACCESS_FINE_LOCATION"
],
"playStoreUrl": "https://play.google.com/store/apps/details?id=cl.salgode.salgode",
"googleServicesFile": "./google-services.json"
},
"description": "",
"githubUrl": "https://github.com/salgode/salgode-mobile",
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "varus",
"project": "salgode",
"authToken": "8cc5519b7a4e4c6b9511f2f2139c660c751df6c6af674f5abbed5c442b369375"
}
}
]
},
"notification": {
"icon": "./assets/images/icon.png",
"iosDisplayInForeground": true
}
}
}