fix: resolve conflicts in mobile app config

This commit is contained in:
Christian Krakau-Louis
2026-03-16 17:45:46 +00:00
parent 3cd895d57c
commit 89b3a6a3c0
2 changed files with 33 additions and 5 deletions
+19 -1
View File
@@ -11,7 +11,9 @@
"resizeMode": "contain", "resizeMode": "contain",
"backgroundColor": "#1e40af" "backgroundColor": "#1e40af"
}, },
"assetBundlePatterns": ["**/*"], "assetBundlePatterns": [
"**/*"
],
"ios": { "ios": {
"supportsTablet": true, "supportsTablet": true,
"bundleIdentifier": "org.docuelevate.mobile", "bundleIdentifier": "org.docuelevate.mobile",
@@ -20,6 +22,7 @@
"NSCameraUsageDescription": "DocuElevate uses the camera to capture documents for upload.", "NSCameraUsageDescription": "DocuElevate uses the camera to capture documents for upload.",
"NSPhotoLibraryUsageDescription": "DocuElevate accesses your photo library to select documents for upload.", "NSPhotoLibraryUsageDescription": "DocuElevate accesses your photo library to select documents for upload.",
"NSPhotoLibraryAddUsageDescription": "DocuElevate saves scanned documents to your photo library.", "NSPhotoLibraryAddUsageDescription": "DocuElevate saves scanned documents to your photo library.",
<<<<<<< Updated upstream
"UIBackgroundModes": ["fetch", "remote-notification"], "UIBackgroundModes": ["fetch", "remote-notification"],
"ITSAppUsesNonExemptEncryption": false, "ITSAppUsesNonExemptEncryption": false,
"LSSupportsOpeningDocumentsInPlace": true, "LSSupportsOpeningDocumentsInPlace": true,
@@ -45,6 +48,15 @@
] ]
}, },
"buildNumber": "7" "buildNumber": "7"
=======
"UIBackgroundModes": [
"fetch",
"remote-notification"
],
"ITSAppUsesNonExemptEncryption": false
},
"buildNumber": "6"
>>>>>>> Stashed changes
}, },
"android": { "android": {
"adaptiveIcon": { "adaptiveIcon": {
@@ -93,7 +105,13 @@
{ {
"icon": "./assets/notification-icon.png", "icon": "./assets/notification-icon.png",
"color": "#1e40af", "color": "#1e40af",
<<<<<<< Updated upstream
"sounds": ["./assets/notification_sound.wav"] "sounds": ["./assets/notification_sound.wav"]
=======
"sounds": [
"./assets/notification-sound.wav"
]
>>>>>>> Stashed changes
} }
], ],
[ [
+14 -4
View File
@@ -1,7 +1,9 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ESNext", "target": "ESNext",
"lib": ["ESNext"], "lib": [
"ESNext"
],
"module": "ESNext", "module": "ESNext",
"moduleResolution": "node", "moduleResolution": "node",
"strict": true, "strict": true,
@@ -9,10 +11,18 @@
"skipLibCheck": true, "skipLibCheck": true,
"jsx": "react-native", "jsx": "react-native",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": [
"./src/*"
]
}, },
"baseUrl": "." "baseUrl": "."
}, },
"include": ["**/*.ts", "**/*.tsx"], "include": [
"exclude": ["node_modules"] "**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
],
"extends": "expo/tsconfig.base"
} }