# MetaPlugin Demo iOS
This project is a small example for how to implement the WebID Meta-Plugin.
The code of the used project is described with several comments on how to implement.
## Tutorial
Generate `Credentials.swift` file
```bash
./init.sh
```
To start the plugin inside this demo project, open the Credentials.swift file.
You will find a class.
You should have been supplied with a username and an api-key for your environment.
Replace the placeholders in the Credentials class.
In order to run a video-ident process, you will need to create it first outside of the app.
From the process creation request to the server, you should have received an action-id, consisting of 9 numbers.
Insert this number in the Credentials class, by replacing the placeholder string with the action-id as a string.
After that, start the demo app on an iOS device.
The app allows you to pick and choose which plugins to add at runtime.
Check the boxes for the plugins you wish to add.
If necessary, the plugin's mode can be set to a given debug scenario.
We recommend the usage of the live mode instead.
Press the main button on the Main screen to start the plugin during runtime.
## Fastened Tutorial