Skip to content

Commit a37e1b0

Browse files
committed
Gradle 9.3, AGP 9.0
1 parent 0deb17a commit a37e1b0

File tree

7 files changed

+11
-12
lines changed

7 files changed

+11
-12
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.8" repository="https://github.com/syslogic/cloudbuild-android" maintainer="Martin Zeitler"
3+
LABEL description="Android Builder" version="1.2.9" repository="https://github.com/syslogic/cloudbuild-android" maintainer="Martin Zeitler"
44
LABEL org.opencontainers.image.description="Android Builder"
55

66
# Packages
@@ -9,9 +9,9 @@ RUN yum -y install wget unzip xxd libidn && yum -y upgrade
99
# RUN yum -y install deltarpm google-cloud-sdk wget unzip xxd libidn && yum -y upgrade
1010

1111
# Arguments, now with default values.
12-
ARG _CLI_TOOLS_VERSION=13114758
12+
ARG _CLI_TOOLS_VERSION=14742923
1313
ARG _ANDROID_SDK_PACKAGES="platform-tools platforms;android-36.1 build-tools;36.1.0 emulator"
14-
ARG _GRADLE_VERSION=9.2.1
14+
ARG _GRADLE_VERSION=9.3.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
@@ -139,9 +139,9 @@ The example app uses [Google Cloud KMS Gradle Plugin](https://github.com/syslogi
139139

140140
These substitutions use no underscore.
141141

142-
- `CLI_TOOLS_VERSION` ~ `13114758`
142+
- `CLI_TOOLS_VERSION` ~ `14742923`
143143
- `ANDROID_SDK_PACKAGES` ~ `platform-tools platforms;android-36.1 build-tools;36.1.0 emulator`
144-
- `GRADLE_VERSION` ~ `9.2.1`
144+
- `GRADLE_VERSION` ~ `9.3.0`
145145
- `DOCKER_IMAGE` ~ the location of the Docker image previously built.
146146

147147
## GCP Service Account

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ allprojects {
4141
def requested = details.requested
4242
if (requested.group == 'org.jetbrains.kotlin') {
4343
List<String> list = ['kotlin-stdlib', 'kotlin-stdlib-jdk7', 'kotlin-stdlib-jdk8', 'kotlin-stdlib-common']
44-
if (list.contains(requested.name)) { details.useVersion libs.versions.kotlin.get() }
44+
if (list.contains(requested.name)) { details.useVersion libs.versions.getKotlin().get() }
4545
}
4646
}
4747
}

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.1 build-tools;36.1.0 emulator ndk;25.1.8937393',
2424
'--build-arg', '_ANDROID_SDK_PACKAGES=platform-tools platforms;android-36.1 build-tools;36.1.0 emulator',
2525
'--build-arg', '_CLI_TOOLS_VERSION=13114758',
26-
'--build-arg', '_GRADLE_VERSION=9.2.1',
26+
'--build-arg', '_GRADLE_VERSION=9.3.0',
2727

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

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ org.gradle.workers.max=6
88

99
android.useAndroidX=true
1010
android.nonTransitiveRClass=false
11-
android.nonFinalResIds=false

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[versions]
2-
android_gradle_plugin = "8.13.1"
2+
android_gradle_plugin = "9.0.0"
33
google_mobile_services = "4.4.4"
44
firebase_appdistribution = "5.2.0"
55
firebase_crashlytics_plugin = "3.0.6"
66
firebase_perf_plugin = "2.0.2"
77

8-
kotlin = "2.2.21"
8+
kotlin = "2.3.0"
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.3"
22+
firebase_crashlytics = "20.0.4"
2323
firebase_perf = "22.0.4"
2424

2525
[plugins]

mobile/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if (new File(getRootDir().absolutePath + "/buildSrc").exists() || project.plugin
1414

1515
android {
1616
namespace = "io.syslogic.cloudbuild"
17-
buildToolsVersion = "36.0.0"
17+
buildToolsVersion = "36.1.0"
1818
defaultConfig {
1919
applicationId = "io.syslogic.cloudbuild"
2020
minSdk = 23

0 commit comments

Comments
 (0)