Skip to content

Commit 744c713

Browse files
committed
Gradle 9.1.0
1 parent 825deca commit 744c713

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dockerfile for building with Android SDK/NDK, including Google Cloud SDK.
22
FROM amazoncorretto:17-al2-jdk AS builder
3-
LABEL description="Android Builder" version="1.2.6" repository="https://github.com/syslogic/cloudbuild-android" maintainer="Martin Zeitler"
3+
LABEL description="Android Builder" version="1.2.7" repository="https://github.com/syslogic/cloudbuild-android" maintainer="Martin Zeitler"
44
LABEL org.opencontainers.image.description="Android Builder"
55

66
# Packages
@@ -11,7 +11,7 @@ RUN yum -y install wget unzip xxd libidn && yum -y upgrade
1111
# Arguments, now with default values.
1212
ARG _CLI_TOOLS_VERSION=13114758
1313
ARG _ANDROID_SDK_PACKAGES="platform-tools platforms;android-36 build-tools;36.0.0 emulator"
14-
ARG _GRADLE_VERSION=9.0.0
14+
ARG _GRADLE_VERSION=9.1.0
1515

1616
# Path
1717
ENV ANDROID_HOME=/opt/android-sdk

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ At the moment these are both statically set in [`cloudbuild.yaml`](https://githu
3939

4040
- `_CLI_TOOLS_VERSION` ~ `13114758`
4141
- `_ANDROID_SDK_PACKAGES` ~ `platform-tools platforms;android-36 build-tools;36.0.0 emulator`
42-
- `_GRADLE_VERSION` ~ `9.0.0`
42+
- `_GRADLE_VERSION` ~ `9.1.0`
4343

4444
## Usage example: Google Cloud Build
4545

@@ -141,7 +141,7 @@ These substitutions use no underscore.
141141

142142
- `CLI_TOOLS_VERSION` ~ `13114758`
143143
- `ANDROID_SDK_PACKAGES` ~ `platform-tools platforms;android-36 build-tools;36.0.0 emulator`
144-
- `GRADLE_VERSION` ~ `9.0.0`
144+
- `GRADLE_VERSION` ~ `9.1.0`
145145
- `DOCKER_IMAGE` ~ the location of the Docker image previously built.
146146

147147
## GCP Service Account

cloudbuild.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ steps:
2323
# '--build-arg', 'ANDROID_SDK_PACKAGES=platform-tools platforms;android-36 build-tools;36.0.0 emulator ndk;25.1.8937393',
2424
'--build-arg', '_ANDROID_SDK_PACKAGES=platform-tools platforms;android-36 build-tools;36.0.0 emulator',
2525
'--build-arg', '_CLI_TOOLS_VERSION=13114758',
26-
'--build-arg', '_GRADLE_VERSION=9.0.0',
26+
'--build-arg', '_GRADLE_VERSION=9.1.0',
2727

2828
# enable cloudbuild network
2929
'--network', 'cloudbuild',

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[versions]
22
android_gradle_plugin = '8.13.0'
3-
google_mobile_services = '4.4.3'
3+
google_mobile_services = '4.4.4'
44
firebase_appdistribution = '5.1.1'
55
firebase_crashlytics_plugin = '3.0.6'
66
firebase_perf_plugin = '2.0.1'
77

8-
kotlin = '2.2.20'
8+
kotlin = '2.2.21'
99
junit = '4.13.2'
1010

1111
androidx_appcompat = '1.7.1'
@@ -19,7 +19,7 @@ androidx_test_monitor = '1.8.0'
1919
androidx_test_espresso = '3.7.0'
2020
androidx_test_uiautomator = '2.3.0'
2121

22-
firebase_crashlytics = '20.0.2'
22+
firebase_crashlytics = '20.0.3'
2323
firebase_perf = '22.0.2'
2424

2525
[plugins]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)