Skip to content

Commit 994dff1

Browse files
committed
Gradle 8.14.2
1 parent 2702f1c commit 994dff1

File tree

4 files changed

+21
-17
lines changed

4 files changed

+21
-17
lines changed

Dockerfile

Lines changed: 3 additions & 3 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.3" repository="https://github.com/syslogic/cloudbuild-android" maintainer="Martin Zeitler"
3+
LABEL description="Android Builder" version="1.2.4" repository="https://github.com/syslogic/cloudbuild-android" maintainer="Martin Zeitler"
44
LABEL org.opencontainers.image.description="Android Builder"
55

66
# Packages
@@ -10,8 +10,8 @@ RUN yum -y install wget unzip xxd libidn && yum -y upgrade
1010

1111
# Arguments, now with default values.
1212
ARG _CLI_TOOLS_VERSION=13114758
13-
ARG _ANDROID_SDK_PACKAGES="platform-tools platforms;android-35 build-tools;35.0.0"
14-
ARG _GRADLE_VERSION=8.13
13+
ARG _ANDROID_SDK_PACKAGES="platform-tools platforms;android-36 build-tools;36.0.0"
14+
ARG _GRADLE_VERSION=8.14.2
1515

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

cloudbuild.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ steps:
2020

2121
# By default these static values are being used, without the NDK (build-trigger configuration not required.
2222
# Note: When commenting these out, one has to run `./gradlew build` to fetch the components instead.
23-
# '--build-arg', 'ANDROID_SDK_PACKAGES=platform-tools platforms;android-35 build-tools;35.0.0 ndk;25.1.8937393',
24-
'--build-arg', '_ANDROID_SDK_PACKAGES=platform-tools platforms;android-35 build-tools;35.0.0',
23+
# '--build-arg', 'ANDROID_SDK_PACKAGES=platform-tools platforms;android-36 build-tools;36.0.0 ndk;25.1.8937393',
24+
'--build-arg', '_ANDROID_SDK_PACKAGES=platform-tools platforms;android-36 build-tools;36.0.0',
2525
'--build-arg', '_CLI_TOOLS_VERSION=13114758',
26-
'--build-arg', '_GRADLE_VERSION=8.13',
26+
'--build-arg', '_GRADLE_VERSION=8.14.2',
2727

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

gradle/libs.versions.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
[versions]
2-
android_gradle_plugin = "8.10.0"
3-
google_mobile_services = '4.4.2'
4-
firebase_appdistribution = '5.0.0'
5-
firebase_crashlytics_plugin = '3.0.2'
2+
android_gradle_plugin = "8.11.0"
3+
google_mobile_services = '4.4.3'
4+
firebase_appdistribution = '5.1.1'
5+
firebase_crashlytics_plugin = '3.0.4'
66
firebase_perf_plugin = '1.4.2'
77

8-
kotlin = '2.1.20'
8+
kotlin = '2.2.0'
99
junit = '4.13.2'
10-
androidx_appcompat = '1.7.0'
11-
androidx_constraintlayout = '2.2.0'
12-
androidx_navigation = '2.8.5'
10+
androidx_appcompat = '1.7.1'
11+
androidx_constraintlayout = '2.2.1'
12+
androidx_navigation = '2.9.1'
1313
androidx_test_junit = '1.2.1'
1414
androidx_test_core = '1.6.1'
1515
androidx_test_rules = '1.6.1'
1616
androidx_test_runner = '1.6.2'
1717
androidx_test_monitor = '1.7.2'
1818
androidx_test_espresso = '3.6.1'
1919
androidx_test_uiautomator = '2.3.0'
20-
firebase_crashlytics = '19.3.0'
21-
firebase_perf = '21.0.3'
20+
firebase_crashlytics = '19.4.4'
21+
firebase_perf = '21.0.5'
2222

2323
[plugins]
2424
android_application = { id = "com.android.application", version.ref = "android_gradle_plugin" }
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
distributionBase=GRADLE_USER_HOMEdistributionPath=wrapper/distsdistributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zipzipStoreBase=GRADLE_USER_HOMEzipStorePath=wrapper/dists
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)