You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: Common Environment Issues - Dynamsoft Barcode Reader for MAUI
4
+
description: This page introduce how to solve common environment issues when using Dynamsoft Barcode Reader MAUI SDK.
5
+
keywords: FAQ, maui, common environment issues
6
+
needAutoGenerateSidebar: true
7
+
needGenerateH3Content: true
8
+
noTitleIndex: true
9
+
---
10
+
11
+
# Common Environment Issues
12
+
13
+
## Failed to install
14
+
15
+
You might get "Could not find a part of the path 'C:\Users\admin\.nuget\packages\dynamsoft.imageprocessing.ios\2.2.300\lib\net7.0-ios16.1\Dynamsoft.ImageProcessing.iOS.resources\DynamsoftImageProcessing.xcframework\ios-arm64\dSYMs\DynamsoftImageProcessing.framework.dSYM\Contents\Resources\DWARF\DynamsoftImageProcessing'" error when installing the package on a **Windows** PC. That's because the Windows system have a limitation of 260 characters in the path. There are 2 ways to solve this:
16
+
17
+
### Exclude the iOS platform from the project
18
+
19
+
The long path belongs to the iOS xcframework of the package. If you only want to run Android on Windows, you can use this solution.
20
+
21
+
Remove iOS platform from you project via the project file.
22
+
23
+
```xml
24
+
<PropertyGroup>
25
+
<!-- Remove iOS and desktop platforms from your TargetFrameworks. -->
-[Configuring the SimplifiedBarcodeReaderSettings](#configuring-the-simplifiedbarcodereadersettings)
39
+
-[Customizing the Scan Region](#customizing-the-scan-region)
40
+
-[Licensing](#licensing)
41
41
42
42
## System Requirements
43
43
@@ -60,11 +60,38 @@ noTitleIndex: true
60
60
61
61
## Installation
62
62
63
+
### Visual Studio for Mac
64
+
63
65
In the **NuGet Package Manager>Manage Packages for Solution** of your project, search for **Dynamsoft.BarcodeReaderBundle.Maui**. Select it and click **install**.
64
66
65
-
> Note: If you are developing Android on Visual Studio Windows, you have to mannually exclude iOS and Windows platforms. Otherwise, the package installation will be failed ("Could not find a part of the path" error).
67
+
### Visual Studio for Windows
66
68
67
-

69
+
Windows systems have a limitation of 260 characters in the path. As a result, the package can't be added via the **NuGet Package Manager**. You have to Add the library via the project file and do some additional steps to complete the installation.
0 commit comments