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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Setup Gradle 8.7
- name: Setup Gradle 8.13
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: '8.7'
gradle-version: '8.13'
cache-read-only: false

- name: Write local.properties
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
java-version: "17"
distribution: temurin

- name: Setup Gradle 8.7
- name: Setup Gradle 8.13
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: "8.7"
gradle-version: "8.13"
cache-read-only: false

- name: Write local.properties
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Rules:
- Merge conflicts must preserve both sides; if both branches used the same version string, renumber the lower-priority one upward

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

### Changed
- Upgraded Android Gradle Plugin from 8.4.0 to 8.13.2 and Gradle wrapper from 8.6 to 8.11.1.

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

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 = 58
versionName = "0.22.1-beta.1"
versionCode = 59
versionName = "0.22.2-beta.1"
}

signingConfigs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ 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.
// Compose library versions are pinned via the Compose BOM (currently 2025.05.01).
// Last verified against libs.versions.toml: AGP 8.13.2 upgrade (no library additions or removals).
//
// Excluded — not shipped in the release APK:
// junit (testImplementation only)
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.6.0"
agp = "8.13.2"
kotlin = "2.0.0"
ksp = "2.0.0-1.0.21"
coreKtx = "1.13.1"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
Loading