> For the complete documentation index, see [llms.txt](https://docs.recognito.vision/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.recognito.vision/face-liveness-detection-sdk/integration-guide/flutter/installation.md).

# Installation

## FaceSDK Plugin Setup

* Download plugin package from [**facesdk\_plugin.zip**](https://www.dropbox.com/scl/fi/yp12mnwhtf49fm6g3zi7b/facesdk_plugin.zip?rlkey=noo23lgs9tw04edm8arv2z4pz\&st=f2y6t07h\&dl=0) and extract to the root folder of your flutter project.

<div data-full-width="false"><figure><img src="/files/10TsVGjhHQyqFTGILOVO" alt=""><figcaption></figcaption></figure></div>

* Add `facesdk_plugin` package to `dependencies` in `pubspec.yaml` file.

```
  facesdk_plugin:
    path: ./facesdk_plugin
```

<figure><img src="/files/jF3t5JMa9g2cKROikzhj" alt=""><figcaption></figcaption></figure>

* Import `facesdk_plugin` package in dart files.

<figure><img src="/files/1CprHTjv3142LbIwP5Bs" alt=""><figcaption></figcaption></figure>

## Android Setup

* Download Android SDK from [**libfacesdk\_core.zip**](https://www.dropbox.com/scl/fi/6udmto3acu8mt7y4x66y9/libfacesdk_core.zip?rlkey=w7gnhvxz8njcvpnssb59a5u60\&st=thrgclok\&dl=0) and extract to `android` folder in your flutter project.

<figure><img src="/files/dYG5VY2MthG8WuQaV8iy" alt=""><figcaption></figcaption></figure>

* Add `libfacesdk` to `settings.gradle` in android folder.

<figure><img src="/files/foLBc4EZq9pprCxRbrp5" alt=""><figcaption></figcaption></figure>

## iOS Setup

* iOS SDK `facesdk.framework` is already included in the `facesdk_plugin` package, so you don't need to download and import it into your project.

<figure><img src="/files/FChJNjDjk55gkZIDG0q4" alt=""><figcaption></figcaption></figure>

## Project Setup

For project setup, run the following commands:

```bash
flutter pub get
```
