---
title: "Nightly builds | Advanced integration"
canonical_url: "https://www.nutrient.io/guides/android/advanced-integration/nightly-builds/"
md_url: "https://www.nutrient.io/guides/android/advanced-integration/nightly-builds.md"
last_updated: "2026-05-25T14:09:00.194Z"
description: "Learn about nightly builds and how to use them in Nutrient for Android and iOS."
---

Nightly builds represent our current development snapshot and contain unreleased features and bug fixes. Customers have access to nightly builds via the [Nutrient Portal](https://my.nutrient.io/), but these should only be used for special situations, such as if you need to verify if a feature or bug fix is working as intended.

Although nightly builds should be stable, they haven’t undergone the same quality control process as stable releases, and as such, they aren’t meant to be used for apps in production.

### Nightly Maven downloads

If nightly builds are enabled for your customer account, you can download them by setting the version of your Nutrient Gradle dependency to `SNAPSHOT`:

```groovy

dependencies {
    implementation 'io.nutrient:nutrient:SNAPSHOT'
}

```

#### Forcing redownloading of nightly builds

To speed up your builds, Gradle will cache nightly binaries for a certain period before it redownloads a newer version from our servers. You can force Gradle to update the binaries to the latest available nightly binary inside Android Studio:

1. Open the Gradle tools window, usually located on the right side of Android Studio.

2. Right-click your Gradle root project (the first entry) and select Refresh dependencies.

3. Gradle will now redownload all dependencies and update the Nutrient nightly builds to the latest available version.

### Download nightly builds manually

Nightly builds are also available as ZIP files containing the Nutrient AAR file, the Catalog app, and other examples. The manually downloaded AAR file can be integrated using the steps found in the [manual library integration](https://www.nutrient.io/guides/android/advanced-integration/manual-library-integration.md) guide. You can download the nightly ZIP file using the download link you received from the Nutrient customer support team.
---

## Related pages

- [About Memory Usage](/guides/android/memory-and-storage/about-memory-usage.md)
- [Check For Compatibility](/guides/android/faq/check-for-compatibility.md)
- [Customizing The Page Number](/guides/android/customizing-pdf-pages/customizing-the-page-number.md)
- [Framework Size](/guides/android/faq/framework-size.md)
- [Managing data storage and privacy in Android](/guides/android/best-practices/data-storage-and-privacy.md)
- [Remove all Android logging calls that should be ignored in release builds to prevent logs in Logcat.](/guides/android/features/logging.md)
- [Manual Library Integration](/guides/android/advanced-integration/manual-library-integration.md)
- [Opening Local Files](/guides/android/miscellaneous/opening-local-files.md)
- [Optimize Pdf Documents For Mobile Rendering](/guides/android/miscellaneous/optimize-pdf-documents-for-mobile-rendering.md)
- [Powered By Nutrient](/guides/android/miscellaneous/powered-by-nutrient.md)
- [Subscription Validation](/guides/android/announcements/subscription-validation.md)
- [Android PDF SDK security](/guides/android/faq/sdk-security.md)
- [Permissions](/guides/android/advanced-integration/permissions.md)
- [Unsupported Internal Symbols](/guides/android/announcements/unsupported-internal-symbols.md)
- [Third Party Compatibility](/guides/android/miscellaneous/third-party-compatibility.md)

