-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
78 lines (78 loc) · 2.02 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
{
"expo": {
"name": "Collect",
"slug": "puente-reactnative-collect",
"platforms": [
"ios",
"android",
"web"
],
"version": "12.6.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"splash": {
"image": "./assets/images/splash.png",
"backgroundColor": "#3d80fc"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"buildNumber": "12.6.1",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "This app uses your location to geo-tag surveys accurately.",
"NSCameraUsageDescription": "This app uses photos to identify residents more accurately.",
"NSPhotoLibraryUsageDescription": "This app uses the photo gallery to let you choose photos to identify residents more accurately."
},
"appStoreUrl": "https://apps.apple.com/us/app/puente-collect/id1362371696",
"bundleIdentifier": "io.ionic.starter1270348"
},
"web": {
"favicon": "./assets/images/favicon.png"
},
"android": {
"versionCode": 480120601,
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"INTERNET"
],
"softwareKeyboardLayoutMode": "pan",
"playStoreUrl": "https://play.google.com/store/apps/details?id=io.ionic.starter1270348",
"googleServicesFile": "./google-services.json",
"package": "io.ionic.starter1270348",
"config": {
"googleMaps": {
"apiKey": "AIzaSyD_vRnyXGdu1zFcivOt2VMwhstAqZnxcNw"
}
}
},
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": [
"expo.ts",
"expo.tsx",
"expo.js",
"expo.jsx",
"ts",
"tsx",
"js",
"jsx",
"json",
"wasm",
"svg"
]
},
"extra": {
"eas": {
"projectId": "04cfb8a1-9de3-4228-91d4-d2f43aeaed27"
}
},
"plugins": []
}
}