Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.0-alpha03] - 2026-07-29

### Added
- Self-contained HTML dashboard report: every analysis writes an `index.html` per device next to the markdown and JSON reports, with size tiles, a component breakdown, per-team drill-downs, and searchable module/library/large-file tables. Works offline and from CI artifact browsers, in light and dark themes
- The analysis logs the report folder location per device on completion

[0.2.0-alpha03]:
https://github.com/grab/app-sizer/releases/tag/v0.2.0-alpha03

## [0.1.0-alpha06] - 2026-07-29
Maintenance release for projects on AGP 8.x, cut from the `support/agp-8.x` branch. Same feature set as 0.2.0-alpha03.

### Added
- Self-contained HTML dashboard report (see 0.2.0-alpha03)
- The analysis logs the report folder location per device on completion

[0.1.0-alpha06]:
https://github.com/grab/app-sizer/releases/tag/v0.1.0-alpha06

## [0.2.0-alpha02] - 2026-07-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion constants.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@

ext {
groupId = "com.grab.sizer"
versionName = project.hasProperty("versionName") ? versionName : "0.2.0-alpha02"
versionName = project.hasProperty("versionName") ? versionName : "0.2.0-alpha03"
}
4 changes: 2 additions & 2 deletions docs/plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ App Sizer provide a gradle plugin as the option to seamlessly integrates with yo
| App Sizer Plugin | Android Gradle Plugin | Gradle | JDK |
|------------------|-----------------------|--------|-----|
| 0.2.0-alpha01 and above | 9.0+ | 9.1+ | 17+ |
| 0.1.0-alpha05 | 8.13.2+ | 8.13+ | 17+ |
| 0.1.0-alpha05 and above | 8.13.2+ | 8.13+ | 17+ |
| 0.1.0-alpha03 and below | 8.x | 8.x | 17+ |

The `0.1.0-alpha05` release ships the same features as `0.2.0-alpha01` (including configuration cache support) built against AGP 8.x, for projects that have not migrated to AGP 9 yet. It is maintained on the `support/agp-8.x` branch.
The `0.1.x` releases from `0.1.0-alpha05` ship the same features as `0.2.0-alpha01` (including configuration cache support) built against AGP 8.x, for projects that have not migrated to AGP 9 yet. It is maintained on the `support/agp-8.x` branch.

## Getting Started

Expand Down
Loading