---
title: "Sample App - Android"
slug: "sample-app-android"
updated: 2026-04-13T20:46:09Z
published: 2026-04-13T20:46:09Z
canonical: "ignite.ticketmaster.com/sample-app-android"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://ignite.ticketmaster.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sample App - Android

## Android Tickets SDK Application Integration Demo

An example integration of the Ticketmaster Tickets framework is available for download :

```plaintext
https://github.com/ticketmaster/Android-TicketsDemoApp
```

In this demo app you can see a full integration of everything covered in this guide:

- Authentication SDK + Tickets SDK setup.
- Login flow.
- Events and Tickets view presentation.
- Session expiration handling.
- Logout implementation.
- Analytics.
- Modules.

---

## Configuring Demo app

1. Open Android-TicketsDemoApp in Android Studio
  1. This will also download all the required libraries
2. Update `local.properties` with your own API key, Team Name and colors

```kotlin
config.consumer_key = "consumer_key"
config.team_name = "team_name"
config.branding_color = "#color"
```

▎ ***Note:*** *API key* available from [https://developer.ticketmaster.com/explore/](https://developer.ticketmaster.com/explore/)

1. Add your URL scheme to the app's manifest: Either under ModernAccountsLoginScreen if you are using Modern Accounts (Host, Archtics, Microflex) to login:

```kotlin
<activity android:name="com.ticketmaster.authenticationsdk.internal.modernaccounts.presentation.ModernAccountsLoginScreen">
  <intent-filter>
    <data android:scheme="[your scheme here]" />
  </intent-filter>
</activity>
```

or SportXRLoginScreen if you are using SportXR.

```kotlin
<activity android:name="com.ticketmaster.authenticationsdk.internal.sportxr.presentation.SportXRLoginScreen">
  <intent-filter>
    <data android:scheme="[your scheme here]" />
  </intent-filter>
</activity>
```

1. Build and Run

---

## Demo App Screenshots

![](https://cdn.document360.io/995f0bfa-740b-4247-b341-fde1e5326a96/Images/Documentation/Screenshot 2026-04-02 at 3.17.44 PM.png)![](https://cdn.document360.io/995f0bfa-740b-4247-b341-fde1e5326a96/Images/Documentation/Screenshot 2026-04-02 at 3.21.22 PM.png)![](https://cdn.document360.io/995f0bfa-740b-4247-b341-fde1e5326a96/Images/Documentation/Screenshot 2026-04-02 at 3.55.18 PM.png)

![](https://cdn.document360.io/995f0bfa-740b-4247-b341-fde1e5326a96/Images/Documentation/Screenshot 2026-04-02 at 3.52.56 PM.png)![](https://cdn.document360.io/995f0bfa-740b-4247-b341-fde1e5326a96/Images/Documentation/Screenshot 2026-04-02 at 3.53.04 PM.png)
