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
Copy file name to clipboardExpand all lines: programming/android/user-guide/getting-started.md
+2-34Lines changed: 2 additions & 34 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,6 @@ noTitleIndex: true
13
13
-[Dynamsoft Code Parser - Android User Guide](#dynamsoft-code-parser---android-user-guide)
14
14
-[Requirements](#requirements)
15
15
-[Add the Libraries](#add-the-libraries)
16
-
-[Add the Libraries Manually](#add-the-libraries-manually)
17
-
-[Add the Libraries via Maven](#add-the-libraries-via-maven)
18
16
-[Build Your First Application](#build-your-first-application)
19
17
-[Create a New Project](#create-a-new-project)
20
18
-[Include the Library](#include-the-library)
@@ -40,31 +38,6 @@ The Dynamsoft Code Parser (DCP) Android SDK comes with four libraries:
40
38
|`DynamsoftLicense.aar`| The license library, which includes license related APIs. |
41
39
|`DynamsoftCodeParserDedicator.aar`| The code parser helper library, which includes some validation functions used by the SDK.|
42
40
43
-
There are two ways to add the libraries into your project - **Manually** and **Maven**.
44
-
45
-
### Add the Libraries Manually
46
-
47
-
1. Download the SDK package from the <ahref="https://www.dynamsoft.com/survey/dlr/?utm_source=docs"target="_blank">Dynamsoft Website</a>. After unzipping, four **aar** files can be found in the **Dynamsoft\Libs** directory:
48
-
49
-
-**DynamsoftCodeParser.aar**
50
-
-**DynamsoftCore.aar**
51
-
-**DynamsoftLicense.aar**
52
-
-**DynamsoftCodeParserDedicator.aar**
53
-
54
-
2. Copy the above seven **aar** files to the target directory such as `[App Project Root Path]\app\libs`
55
-
56
-
3. Open the file `[App Project Root Path]\app\build.gradle` and add the reference in the dependencies:
Copy file name to clipboardExpand all lines: programming/ios/user-guide/getting-started.md
+2-27Lines changed: 2 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,6 @@ noTitleIndex: true
13
13
-[Dynamsoft Code Parser - iOS User Guide](#dynamsoft-code-parser---ios-user-guide)
14
14
-[Requirements](#requirements)
15
15
-[Add the xcframeworks](#add-the-xcframeworks)
16
-
-[Add the xcframeworks Manually](#add-the-xcframeworks-manually)
17
-
-[Add the xcframeworks via CocoaPods](#add-the-xcframeworks-via-cocoapods)
18
16
-[Build Your First Application](#build-your-first-application)
19
17
-[Create a New Project](#create-a-new-project)
20
18
-[Include the Library](#include-the-library)
@@ -40,23 +38,6 @@ The Dynamsoft Code Parser (DCP) iOS SDK comes with four libraries:
40
38
|`DynamsoftLicense.xcframework`| The license library, which includes license related APIs. |
41
39
|`DynamsoftCodeParserDedicator.xcframework`| The code parser helper library, which includes some validation functions used by the SDK. |
42
40
43
-
There are two ways to add the libraries into your project - **Manually** and **Via the CocaPods**.
44
-
45
-
### Add the xcframeworks Manually
46
-
47
-
1. Download the SDK package from the <ahref="https://www.dynamsoft.com/survey/dlr/?utm_source=docs"target="_blank">Dynamsoft website</a>. After unzipping, four **xcframework** files can be found in the **Dynamsoft\Frameworks** directory:
48
-
49
-
-**DynamsoftCodeParser.xcframework**
50
-
-**DynamsoftCore.xcframework**
51
-
-**DynamsoftLicense.xcframework**
52
-
-**DynamsoftCodeParserDedicator.xcframework**
53
-
54
-
2. Drag and drop the above **xcframeworks** into your Xcode project. Make sure to check Copy items if needed and create groups to copy the **xcframeworks** into your project's folder.
55
-
56
-
3. Click on the project settings then go to **General –> Frameworks, Libraries, and Embedded Content**. Set the **Embed** field to **Embed & Sign** for all the **xcframeworks**.
57
-
58
-
### Add the xcframeworks via CocoaPods
59
-
60
41
1. Add the frameworks in your **Podfile**, replace `TargetName` with your real target name.
61
42
62
43
```pod
@@ -65,8 +46,8 @@ There are two ways to add the libraries into your project - **Manually** and **V
65
46
66
47
pod 'DynamsoftCodeParser','2.2.10'
67
48
pod 'DynamsoftCodeParserDedicator','1.2.20'
68
-
pod 'DynamsoftCore','3.2.11'
69
-
pod 'DynamsoftLicense','3.2.11'
49
+
pod 'DynamsoftCore','3.2.30'
50
+
pod 'DynamsoftLicense','3.2.20'
70
51
71
52
end
72
53
```
@@ -84,7 +65,6 @@ The following sample will demonstrate how to create a simple `HelloWorld` app fo
84
65
>Note:
85
66
>
86
67
>- The following steps are completed in XCode 14.2
87
-
>- View the entire Swift source code from [HelloWorld(Swift) sample](https://github.com/Dynamsoft/code-parser-mobile-samples/blob/master/ios/HelloWorld/)
88
68
89
69
### Create a New Project
90
70
@@ -219,8 +199,3 @@ Add the SDK to your new project. Please read [Add the xcframeworks](#add-the-xcf
219
199
220
200
1. Select the device that you want to run your app on.
221
201
2. Run the project, then your app will be installed on your device.
222
-
223
-
>Note:
224
-
>
225
-
>- You can get the source code of the HelloWord app from the following link
226
-
>- View the entire Swift source code from [HelloWorld sample](https://github.com/Dynamsoft/code-parser-mobile-samples/blob/main/ios/HelloWorld/)
0 commit comments