First Steps
1. Add the dependencies to you project
There're two ways of adding the dependencies to your project:
a) Add the Swift Package
You'll need to add to you ~/.netrc file your Mobbeel credentials:
machine repository.mobbeel.com
login <username>
password <password>
With this, you can Xcode's Add Package Dependency to add the Swift Package https://github.com/mobbeel-solutions/MobbScanGatewaySDK-iOS-SwiftPM to your project. After choosing the target and the version you want, this will automatically integrate the SDK, and allow you to easily update it using the File > Packages > Update to Latest Package Versions option.
b) Manually add the SDK to your project
You can just drag and drop the XCFrameworks on the libs folder in the SDK to the Frameworks, Libraries and Embedded Content section of your project. Please ensure that the frameworks are added with the `Embed & Sign" option selected.

2. Add the required literals to your Info.plist file.
MobbScan SDK needs to access your camera for document detection, so you need to give your application access to it. In order to do so, you can add the following literals to your Info.plist file:
<key>NSCameraUsageDescription</key>
<string>Used to scan documents</string>
Alternatively, if you don't have an Info.plist, you can set the INFOPLIST_KEY_NSCameraUsageDescription Build Setting on the Build Settings section of your project.
3. Usage
Now you are ready to use the MobbScan Gateway Android sdk. Check Usage section for additional info.
