# Installation

### Swift Package Manager

The easiest (and recommended) way to use Snapscreen is to integrate via SwiftPM.  To integrate via SwiftPM, add the location of the github repository and the version to your Package.swift file, as shown below:

```swift
dependencies: [
    .package(url: "https://github.com/snapodds/sdk-ios.git", .upToNextMajor(from: "2.0.0"))
]
```

### Direct integration of XCFramework

Snapscreen is provided as an iOS xcframework and bundles everything necessary for it to operate.&#x20;

1. Drag the Snapscreenframework.xcframework to your iOS project
2. Make sure Xcode has added the framework to your project's **Framework, Libraries and Embedded Content** section in your General Settings
3. Make sure to change the **Embed** setting to **Embed & Sign**.

## Camera Permission

The snapping functionality relies on permission to access the camera of your iOS device to function. Access to the camera requires developers to provide a description of the camera's usage in the application. To add this camera usage description, add the key **NSCameraUsageDescription** into your application's Info.plist, and describe how the camera is used for the snapping functionality.
