# Activity Tracking

## Overview

The PushSDK provides methods that allow you to track the type of content a subscriber is viewing within your application. This information can then be used in the Pushly platform to create cohorts of subscribers that have visited specific URLs  or screens with tags based on the number of visits and visit recency.

For example: "Subscribers who have visited a page/screen tagged with "Astrology" at least 4 times in the last 30 days".

## Methods

### UserProfile.trackActivity

To track a URL or screen visited along with its keyword/tag metadata:

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

```kotlin
PushSDK.UserProfile.trackActivity(name="myapp://dashboard", tags=listOf("my-tag"))
```

{% endtab %}

{% tab title="Java" %}

```java
PushSDK.UserProfile.trackActivity("myapp://dashboard", List.of("my-tag"));
```

{% endtab %}
{% endtabs %}

Or if there are no tags to be provided omit the `tags` parameter:

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

```kotlin
PushSDK.UserProfile.trackActivity(name="myapp://sports/article-1")
```

{% endtab %}

{% tab title="Java" %}

```java
PushSDK.UserProfile.trackActivity("https://pushly.com/article-1");
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.pushly.com/integration/implementation-steps/android/sdk-kotlin-java/activity-tracking.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
