This commit is contained in:
Patrick Fic
2021-02-24 14:16:58 -08:00
parent 3231097b29
commit 8d34db4bbe
4 changed files with 19 additions and 9 deletions

View File

@@ -2,26 +2,33 @@
"expo": { "expo": {
"name": "imexmobile", "name": "imexmobile",
"slug": "imexmobile", "slug": "imexmobile",
"version": "1.0.2ØØ", "version": "1.0.2",
"orientation": "default", "orientation": "default",
"icon": "./assets/logo192.png", "icon": "./assets/logo192noa.png",
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.imex.imexmobile",
"buildNumber": "1.0.0"
},
"android": {
"package": "com.imex.imexmobile",
"versionCode": 1
},
"splash": { "splash": {
"image": "./assets/logo1024.png", "image": "./assets/logo1024.png",
"resizeMode": "contain", "resizeMode": "contain",
"backgroundColor": "#efefef" "backgroundColor": "#efefef"
}, },
"notification": { "notification": {
"icon": "./assets/logo192.png" "icon": "./assets/logo192noa.png"
}, },
"updates": { "updates": {
"fallbackToCacheTimeout": 0 "fallbackToCacheTimeout": 0
}, },
"assetBundlePatterns": ["**/*"], "assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true
},
"web": { "web": {
"favicon": "./assets/logo192.png" "favicon": "./assets/logo192noa.png"
}, },
"description": "", "description": "",
"hooks": { "hooks": {

BIN
assets/logo192noa.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -141,6 +141,8 @@ const BottomTabsNavigator = () => (
iconName = "ios-list"; iconName = "ios-list";
} else if (route.name === "MessagingTab") { } else if (route.name === "MessagingTab") {
iconName = "ios-chatboxes"; iconName = "ios-chatboxes";
} else if (route.name === "MoreTab") {
iconName = "ios-settings";
} else if (route.name === "CameraTab") { } else if (route.name === "CameraTab") {
iconName = "ios-camera"; iconName = "ios-camera";
} else if ( } else if (

View File

@@ -143,12 +143,13 @@ export const uploadToCloudinary = async (
variables: { variables: {
docInput: [ docInput: [
{ {
jobid: jobId, ...(jobId ? { jobid: jobId } : {}),
...(billId ? { billid: billId } : {}),
uploaded_by: uploaded_by, uploaded_by: uploaded_by,
key: key, key: key,
billid: billId,
type: fileType, type: fileType,
extension: extension, extension: extension,
bodyshopid: bodyshop.id,
}, },
], ],
}, },