diff --git a/app.json b/app.json index 566e01b..74774bb 100644 --- a/app.json +++ b/app.json @@ -2,26 +2,33 @@ "expo": { "name": "imexmobile", "slug": "imexmobile", - "version": "1.0.2ØØ", + "version": "1.0.2", "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": { "image": "./assets/logo1024.png", "resizeMode": "contain", "backgroundColor": "#efefef" }, "notification": { - "icon": "./assets/logo192.png" + "icon": "./assets/logo192noa.png" }, "updates": { "fallbackToCacheTimeout": 0 }, "assetBundlePatterns": ["**/*"], - "ios": { - "supportsTablet": true - }, + "web": { - "favicon": "./assets/logo192.png" + "favicon": "./assets/logo192noa.png" }, "description": "", "hooks": { diff --git a/assets/logo192noa.png b/assets/logo192noa.png new file mode 100644 index 0000000..ff28f9a Binary files /dev/null and b/assets/logo192noa.png differ diff --git a/components/screen-main/screen-main.component.jsx b/components/screen-main/screen-main.component.jsx index d70dd79..d989624 100644 --- a/components/screen-main/screen-main.component.jsx +++ b/components/screen-main/screen-main.component.jsx @@ -141,6 +141,8 @@ const BottomTabsNavigator = () => ( iconName = "ios-list"; } else if (route.name === "MessagingTab") { iconName = "ios-chatboxes"; + } else if (route.name === "MoreTab") { + iconName = "ios-settings"; } else if (route.name === "CameraTab") { iconName = "ios-camera"; } else if ( diff --git a/util/document-upload.utility.js b/util/document-upload.utility.js index 5c510f2..5362333 100644 --- a/util/document-upload.utility.js +++ b/util/document-upload.utility.js @@ -143,12 +143,13 @@ export const uploadToCloudinary = async ( variables: { docInput: [ { - jobid: jobId, + ...(jobId ? { jobid: jobId } : {}), + ...(billId ? { billid: billId } : {}), uploaded_by: uploaded_by, key: key, - billid: billId, type: fileType, extension: extension, + bodyshopid: bodyshop.id, }, ], },