> For the complete documentation index, see [llms.txt](https://docs.antsomi.com/developers-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.antsomi.com/developers-guide/ios/getting-started/integration-of-antsomi-ios-sdk.md).

# Integration of Antsomi iOS SDK

### CocoaPods

Antsomi supports [Cocoapods](https://guides.cocoapods.org/using/getting-started.html#getting-started)

Here's how to install Antsomi using CocoaPods:

1. Create a Podfile if you don't already have one. From the root of your project directory, run the following command:

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

```ruby
pod init
```

{% endtab %}
{% endtabs %}

2. To your Podfile, add the Antsomi pod that you want to use in your app.

For Integration AntsomiFramework:

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

```ruby
target 'YourAppTarget' do
  pod 'AntsomiFramework', '1.1.79'
end
```

{% endtab %}
{% endtabs %}

3. Install the pods, then open your .xcworkspace file to see the project in Xcode:

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

```sh
$ pod install --repo-update
```

{% endtab %}
{% endtabs %}
