Skip to main content

Gradle Plugin Releases

4.x (SDK 7.x)

4.0.0-beta4 (April 27 2026)

  • Build size-analysis uploads now include richer build metadata: host machine, configuration / instrumentation / total timings, managed-code time, and the build system and SDK versions used.
  • VCS information (branch, commit, dirty flag) is now sent as a nested object in the upload payload rather than flat fields.
  • Bundle upload tasks are now compatible with Gradle's configuration cache, and the app token is masked in log output.
  • Maven publishing signing tasks are now disabled cleanly when GPG credentials aren't present, replacing a workaround that broke configuration cache.
  • Adds Kotlin 2.3 compatibility.

4.0.0-beta3 (April 23 2026)

  • Build size-analysis upload. New uploadBugsee<Variant>Apk and uploadBugsee<Variant>Bundle tasks let you upload APK/AAB size data to Bugsee. Opt in via bugsee { sizeAnalysis { enabled.set(true) } }. Both direct and chunked uploads are supported. See the Gradle plugin reference for the DSL.
  • Smarter native symbol uploads. The plugin now caches native symbol uploads and skips them when nothing has changed. Use bugseeNdkForceUpload to bypass the cache, and uploads are limited to the current variant rather than all variants.
  • Fix: Several improvements to chunked uploads — deduplication, retry, validation, and clearer error messages.

4.0.0-beta2 (April 18 2026)

  • Migrated to a multi-project build and configured Maven Central publication: Dokka Javadoc JARs, full POM metadata, and signed artifacts for the Gradle plugins.
  • Updated repository URLs to the new Sonatype Central endpoints.

4.0.0-beta1 (April 13 2026)

First beta of the 4.x plugin line — a full rewrite in Kotlin, required by SDK 7.x. Highlights:

  • Bytecode instrumentation for Logcat capture, thread registration, I/O / database / SharedPreferences / network operation dispatch (powering APM spans), main-thread misuse detection, Android 14+ platform HTTP (HttpEngine), OkHttp 3/4 interceptor injection, and Compose touch capture.
  • Compose support. A Kotlin compiler plugin injects Compose tags and automatically applies Modifier.bugseeSecure() to password TextField call sites.
  • Auto-install of SDK extension modules (Compose, OkHttp, Ktor 2/3, Cronet) based on what your project already uses.
  • Per-build BUILD_UUID injected via the AGP manifest transform API.
  • Symbol uploads. NDK debug symbols are collected and uploaded, and ProGuard/R8 mapping files are uploaded via the AGP artifact API.
  • Every instrumentation can be toggled individually through the bugsee { instrumentation { ... } } block.
  • Plugin ID com.bugsee.android.gradle is registered with the Gradle Plugin Portal and works with the plugins { } DSL.
caution

4.x requires SDK 7.x (bugsee-android-* artifacts). It is not backward-compatible with SDK 6.x.


3.x (SDK 6.x)

3.6 (April 28 2025)

  • Feat: Add NDK symbols handling support (collection and upload)

3.5 (November 15 2024)

  • Fix: Ensure AAB targets are handled correctly

3.4 (September 10 2024)

  • Feat: Add artifacts which can be referenced by the plugin ID

3.3 (September 10 2024)

  • Fix: Properly define plugin name in Gradle environment

3.2 (March 13 2023)

  • Fix: SSL/TLS issues

3.1 (September 16 2022)

  • Fix: Internal issues

3.0 (September 13 2022)

  • Feat: Latest Gradle version support

2.x

2.3 (August 3 2022)

  • Feat: Internal improvements

2.2 (August 9 2021)

  • Feat: Internal improvements

2.1 (August 5 2021)

  • Feat: Internal improvements

2.0 (August 5 2021)

  • Feat: Migrate to Gradle 7.1.1

1.x

1.2 (October 28 2020)

  • Feat: Gradle 4.1+ support

1.1 (May 27 2020)

  • Feat: Latest Gradle version support

1.0.7 (March 21 2019)

  • Fix: Remove deprecated calls to leftShift()

1.0.6 (February 13 2019)

  • Fix: Handle manifestOutputDirectory properly in Gradle 3.3.x

1.0.5 (November 2 2018)

  • Feat: Add support for instant apps
  • Feat: Add support for split sections

1.0.4 (December 26 2017)

  • Fix: Internal issues

1.0.3 (November 18 2017)

  • Fix: Internal issues

1.0.2 (November 14 2017)

  • Fix: Internal issues

1.0.1 (March 3 2017)

  • Fix: Ensure all symbols archives are uploaded correctly

1.0.0 (March 3 2017)

  • Feat: Initial release