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": {
"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": {

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";
} 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 (

View File

@@ -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,
},
],
},