---
title: Dynamic Options
description: Datadog, the leading service for cloud-scale monitoring.
breadcrumbs: Docs > DD E2E > Cdocs e2e tests > Dynamic Options
---

# Dynamic Options

## Overview{% #overview %}

The second filter on this page shows different options depending on the selection made in the first filter.

Select a platform to see the available programming languages for that platform.

## Currently selected filters{% #currently-selected-filters %}

{% section displayed-if="Platform is iOS" %}
This section only applies to users who meet the following criteria: Platform is iOS

The selected platform is **iOS**.
{% /section %}

{% section displayed-if="Platform is Android" %}
This section only applies to users who meet the following criteria: Platform is Android

The selected platform is **Android**.
{% /section %}

{% section displayed-if="Programming Language is Swift" %}
This section only applies to users who meet the following criteria: Programming Language is Swift

The selected programming language is **Swift**.
{% /section %}

{% section displayed-if="Programming Language is Objective-C" %}
This section only applies to users who meet the following criteria: Programming Language is Objective-C

The selected programming language is **Objective-C**.
{% /section %}

{% section displayed-if="Programming Language is Kotlin" %}
This section only applies to users who meet the following criteria: Programming Language is Kotlin

The selected programming language is **Kotlin**.
{% /section %}

{% section displayed-if="Programming Language is Java" %}
This section only applies to users who meet the following criteria: Programming Language is Java

The selected programming language is **Java**.
{% /section %}

## Installation{% #installation %}

{% section
   displayed-if="(Platform is iOS) and (Programming Language is Swift)" %}
This section only applies to users who meet the following criteria: (Platform is iOS) and (Programming Language is Swift)

Add the Datadog SDK to your project using Swift Package Manager:

```
dependencies: [
    .package(url: "https://github.com/DataDog/dd-sdk-ios.git", .upToNextMajor(from: "2.0.0"))
]
```
{% /section %}

{% section
   displayed-if="(Platform is iOS) and (Programming Language is Objective-C)" %}
This section only applies to users who meet the following criteria: (Platform is iOS) and (Programming Language is Objective-C)

Add the Datadog SDK to your project using CocoaPods:

```
pod 'DatadogSDK'
```
{% /section %}

{% section
   displayed-if="(Platform is Android) and (Programming Language is Kotlin)" %}
This section only applies to users who meet the following criteria: (Platform is Android) and (Programming Language is Kotlin)

Add the Datadog SDK to your `build.gradle.kts`:

```
dependencies {
    implementation("com.datadoghq:dd-sdk-android:2.0.0")
}
```
{% /section %}

{% section
   displayed-if="(Platform is Android) and (Programming Language is Java)" %}
This section only applies to users who meet the following criteria: (Platform is Android) and (Programming Language is Java)

Add the Datadog SDK to your `build.gradle`:

```
dependencies {
    implementation 'com.datadoghq:dd-sdk-android:2.0.0'
}
```
{% /section %}
