> For the complete documentation index, see [llms.txt](https://api2-ekycapis.innov8tif.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api2-ekycapis.innov8tif.com/okayid-mobile-sdk/okayid-nfc-mobile-sdk-all/installation-guide.md).

# Installation Guide

This page shows the installation guide of OkayID NFC

{% tabs %}
{% tab title="Android" %}

### Installation

Add repo to project-level `build.gradle` file:

```
allprojects {
	 repositories {
		...
		 mavenCentral()
	 }
}
```

Add dependency to app-level `build.gradle` file:

```
implementation 'com.innov8tif.OkayIDNFC:OkayIDNFC:1.0.0'
```

{% endtab %}

{% tab title="iOS" %}

### Installation

OkayNFC is available through [CocoaPods](https://cocoapods.org). To install it, add the following to your app target in your podfile:

```
use_frameworks!
pod 'OkayNFC'

post_install do |installer|
    installer.pods_project.targets.each do |target|
        if target.name == "CryptoSwift"
            puts "Enable module stability for CryptoSwift"
            target.build_configurations.each do |config|
                config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
            end
        end
    end
end
```

###

### Permission

1.Add `NFC` capability to the project

![](https://1723857616-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoP1M8bTYgFFHHnAdjjta%2Fuploads%2FW6L9gq0APmN25fVGBtUq%2Fimage1.png?alt=media\&token=315d1f33-c188-42b6-afe8-f6e08bd739f8)

![](https://1723857616-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoP1M8bTYgFFHHnAdjjta%2Fuploads%2Fy2WzOAwty52689a54rWo%2Fimage2.png?alt=media\&token=f1f8e641-ee4f-4ea8-ac5f-a48663e5157c)

2\. In `info.plist`, add the keys as the image attached below.

![](https://1723857616-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FoP1M8bTYgFFHHnAdjjta%2Fuploads%2FySCxglO615HJe27E7qUy%2Fimage3.png?alt=media\&token=36d69b12-b9c1-45bc-8b28-1a2f47e84f79)
{% endtab %}
{% endtabs %}

{% hint style="info" %}
Please follow the version accordingly to the documentation above.&#x20;
{% endhint %}
