---
title: "Using a BOM"
description: "Learn more about using a bill of materials with multiple Sentry dependencies."
url: https://docs.sentry.io/platforms/android/configuration/bill-of-materials/
---

# Using a BOM | Sentry for Android

When you are using multiple Sentry dependencies, you can avoid specifying the version of each dependency with a *BOM* or *Bill Of Materials*.

Using Gradle 5.0 or higher, you can add the following to the `dependencies` section in your `build.gradle`:

`build.gradle`

```groovy
implementation platform('io.sentry:sentry-bom:8.39.1') //import bom
implementation('io.sentry:sentry-android') //no version specified
implementation('io.sentry:sentry-android-fragment') //no version specified
```
