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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ Rules:

---

## [0.21.2-beta.1] - 2026-06-02

### Changed
- Licences screen maintainer note expanded to document all excluded dependencies (`junit`, `room-compiler`, `ui-tooling`).

## [0.21.1-beta.1] - 2026-06-02

### Changed
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId = "com.mapgie.goflo"
minSdk = 26
targetSdk = 34
versionCode = 56
versionName = "0.21.1-beta.1"
versionCode = 57
versionName = "0.21.2-beta.1"
}

signingConfigs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ package com.mapgie.goflo.ui.screens.licenses
// MAINTAINER NOTE: keep this list in sync with gradle/libs.versions.toml.
// Add an entry here whenever a new RUNTIME dependency is added to the project.
//
// Excluded — not shipped in the APK:
// junit (testImplementation only)
// Excluded — not shipped in the release APK:
// junit (testImplementation only)
// androidx-room-compiler (ksp — annotation processor, compile-time only)
// androidx-ui-tooling (debugImplementation only)

import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Column
Expand Down
Loading