Skip to content

Commit ae9e4da

Browse files
committed
version 1.2.5
1 parent 01be07c commit ae9e4da

File tree

6 files changed

+18
-21
lines changed

6 files changed

+18
-21
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.4" repository="https://github.com/syslogic/cloudbuild-android" maintainer="Martin Zeitler"
3+
LABEL description="Android Builder" version="1.2.5" 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"
14-
ARG _GRADLE_VERSION=8.14.2
14+
ARG _GRADLE_VERSION=9.0.0
1515

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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212

1313
plugins {
1414
alias(libs.plugins.android.application) apply false
15-
// alias(libs.plugins.android.library) apply false
15+
alias(libs.plugins.android.library) apply false
1616
alias(libs.plugins.androidx.navigation.safeargs) apply false
1717
alias(libs.plugins.google.mobile.services) apply false
1818
alias(libs.plugins.firebase.appdistribution) apply false

gradle.properties

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,3 @@ org.gradle.workers.max=6
99
android.useAndroidX=true
1010
android.nonTransitiveRClass=false
1111
android.nonFinalResIds=false
12-
13-
android.suppressUnsupportedCompileSdk=35

gradle/libs.versions.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
[versions]
2-
android_gradle_plugin = "8.11.0"
2+
android_gradle_plugin = "8.11.1"
33
google_mobile_services = '4.4.3'
44
firebase_appdistribution = '5.1.1'
5-
firebase_crashlytics_plugin = '3.0.4'
6-
firebase_perf_plugin = '1.4.2'
5+
firebase_crashlytics_plugin = '3.0.5'
6+
firebase_perf_plugin = '2.0.0'
77

88
kotlin = '2.2.0'
99
junit = '4.13.2'
1010
androidx_appcompat = '1.7.1'
1111
androidx_constraintlayout = '2.2.1'
12-
androidx_navigation = '2.9.1'
13-
androidx_test_junit = '1.2.1'
14-
androidx_test_core = '1.6.1'
15-
androidx_test_rules = '1.6.1'
16-
androidx_test_runner = '1.6.2'
17-
androidx_test_monitor = '1.7.2'
18-
androidx_test_espresso = '3.6.1'
12+
androidx_navigation = '2.9.3'
13+
androidx_test_junit = '1.3.0'
14+
androidx_test_core = '1.7.0'
15+
androidx_test_rules = '1.7.0'
16+
androidx_test_runner = '1.7.0'
17+
androidx_test_monitor = '1.8.0'
18+
androidx_test_espresso = '3.7.0'
1919
androidx_test_uiautomator = '2.3.0'
20-
firebase_crashlytics = '19.4.4'
21-
firebase_perf = '21.0.5'
20+
firebase_crashlytics = '20.0.0'
21+
firebase_perf = '22.0.0'
2222

2323
[plugins]
2424
android_application = { id = "com.android.application", version.ref = "android_gradle_plugin" }
25-
# android_library = { id = "com.android.library", version.ref = "android_gradle_plugin" }
25+
android_library = { id = "com.android.library", version.ref = "android_gradle_plugin" }
2626
androidx_navigation_safeargs = { id = "androidx.navigation.safeargs", version.ref = "androidx_navigation" }
2727
google_mobile_services = { id = "com.google.gms.google-services", version.ref = "google_mobile_services" }
2828
firebase_appdistribution = { id = "com.google.firebase.appdistribution", version.ref = "firebase_appdistribution" }
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-8.14.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

settings.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ import org.gradle.api.initialization.resolve.RepositoriesMode
22

33
pluginManagement {
44
repositories {
5-
gradlePluginPortal()
6-
maven { url = 'https://jitpack.io' }
5+
maven { url = uri("https://jitpack.io") }
76
google()
87
mavenCentral()
98
}

0 commit comments

Comments
 (0)