> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/sdks/sdk-mobile/ios-sdk/aplicaciones-de-ejemplo.md).

# Sample applications

Sample applications can be found in the GitHub repository:

[iOS Repository](https://github.com/facephi/sdk-mobile-ios-samples/tree/master)

## Configure and run applications <a href="#pasos-para-configurar-y-ejecutar-las-aplicaciones" id="pasos-para-configurar-y-ejecutar-las-aplicaciones"></a>

1. Add the private repository as indicated in *Installation*.
2. Fill in the data in the class `SdkConfigurationManager`.

## SdkConfigurationManager - Data required for using the SDK <a href="#sdkdata---datos-necesarios-para-el-uso-del-sdk" id="sdkdata---datos-necesarios-para-el-uso-del-sdk"></a>

For the application to work correctly, the following data must be filled in.

```swift
// Data for online License
static let APIKEY_LICENSING = "...."
static let LICENSING_URL = "...."

// Data for offline License
static let LICENSE = "...."
static let LICENSE_ONLINE = false

// Client identifier and operation type
static let CUSTOMER_ID = "...."
var OPERATION_TYPE = OperationType.ONBOARDING

// Selphi, with the name of the resource zip and configuration data
let resourcesSelphi: String = {
let selphiZipName = "fphi-selphi-widget-resources-sdk"
return Bundle.main.path(forResource: selphiZipName, ofType: "zip") ?? ""
}()

// SelphID, with the name of the resource zip and configuration data
let resourcesSelphID: String = {
let selphidZipName = "fphi-selphid-widget-resources-sdk"
return Bundle.main.path(forResource: selphidZipName, ofType: "zip") ?? ""
}()

// Verification services URL
static let BASE_URL = "..."
```

***
