Skip to content

Commit 5d3cc3a

Browse files
Update all dependencies
1 parent 9dccdd3 commit 5d3cc3a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+72
-72
lines changed

AccessibilityCodelab/app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ android {
7070
}
7171

7272
dependencies {
73-
def composeBom = platform('androidx.compose:compose-bom:2025.02.00')
73+
def composeBom = platform('androidx.compose:compose-bom:2025.03.01')
7474
implementation(composeBom)
7575
testImplementation(composeBom)
7676
androidTestImplementation(composeBom)
@@ -97,16 +97,16 @@ dependencies {
9797
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1"
9898

9999
implementation 'androidx.appcompat:appcompat:1.7.0'
100-
implementation 'androidx.activity:activity-ktx:1.10.0'
100+
implementation 'androidx.activity:activity-ktx:1.10.1'
101101
implementation 'androidx.core:core-ktx:1.15.0'
102-
implementation "androidx.activity:activity-compose:1.10.0"
102+
implementation "androidx.activity:activity-compose:1.10.1"
103103

104104
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7"
105105
implementation "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.8.7"
106106
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.7"
107107
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.7"
108108

109-
implementation 'androidx.navigation:navigation-compose:2.8.7'
109+
implementation 'androidx.navigation:navigation-compose:2.8.9'
110110

111111
androidTestImplementation 'androidx.test:rules:1.6.1'
112112
androidTestImplementation 'androidx.test:runner:1.6.2'

AccessibilityCodelab/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ buildscript {
2121
}
2222

2323
dependencies {
24-
classpath 'com.android.tools.build:gradle:8.8.1'
24+
classpath 'com.android.tools.build:gradle:8.9.1'
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
2626
}
2727
}
2828

2929
plugins {
30-
id 'com.diffplug.spotless' version '7.0.2'
30+
id 'com.diffplug.spotless' version '7.0.3'
3131
id 'org.jetbrains.kotlin.plugin.compose' version "2.1.10" apply false
3232
}
3333

Binary file not shown.

AccessibilityCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AccessibilityCodelab/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

AdaptiveUiCodelab/gradle/libs.versions.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[versions]
2-
androidGradlePlugin = "8.8.1"
3-
composeBom = "2025.02.00"
2+
androidGradlePlugin = "8.9.1"
3+
composeBom = "2025.03.01"
44
coreKtx = "1.15.0"
5-
activityCompose = "1.10.0"
5+
activityCompose = "1.10.1"
66
espressoCore = "3.6.1"
77
junit = "4.13.2"
88
junitVersion = "1.2.1"
99
kotlin = "2.1.10"
1010
kotlinxCoroutinesAndroid = "1.10.1"
1111
lifecycle = "2.8.7"
12-
material3Adaptive = "1.0.0"
12+
material3Adaptive = "1.1.0"
1313
material3AdaptiveNavSuite = "1.3.1"
1414
window = "1.3.0"
1515

122 Bytes
Binary file not shown.

AdaptiveUiCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AdaptiveUiCodelab/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

AdvancedStateAndSideEffectsCodelab/app/build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ dependencies {
103103
}
104104
}
105105

106-
implementation "androidx.activity:activity-compose:1.10.0"
106+
implementation "androidx.activity:activity-compose:1.10.1"
107107
implementation "androidx.appcompat:appcompat:1.7.0"
108108
implementation "androidx.tracing:tracing:1.2.0"
109109

110-
def composeBom = platform('androidx.compose:compose-bom:2025.02.00')
110+
def composeBom = platform('androidx.compose:compose-bom:2025.03.01')
111111
implementation(composeBom)
112112
androidTestImplementation(composeBom)
113113
implementation "androidx.compose.runtime:runtime"
@@ -125,8 +125,8 @@ dependencies {
125125
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycle_version"
126126
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
127127
implementation "androidx.lifecycle:lifecycle-runtime-compose:$lifecycle_version"
128-
implementation "com.google.dagger:hilt-android:2.55"
129-
kapt "com.google.dagger:hilt-compiler:2.55"
128+
implementation "com.google.dagger:hilt-android:2.56.1"
129+
kapt "com.google.dagger:hilt-compiler:2.56.1"
130130

131131
implementation "io.coil-kt:coil-compose:2.7.0"
132132

@@ -137,7 +137,7 @@ dependencies {
137137
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.1"
138138
androidTestImplementation "androidx.test.ext:junit-ktx:1.2.1"
139139
androidTestImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.1"
140-
androidTestImplementation "com.google.dagger:hilt-android:2.55"
141-
androidTestImplementation "com.google.dagger:hilt-android-testing:2.55"
142-
kaptAndroidTest "com.google.dagger:hilt-compiler:2.55"
140+
androidTestImplementation "com.google.dagger:hilt-android:2.56.1"
141+
androidTestImplementation "com.google.dagger:hilt-android-testing:2.56.1"
142+
kaptAndroidTest "com.google.dagger:hilt-compiler:2.56.1"
143143
}

AdvancedStateAndSideEffectsCodelab/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ buildscript {
2020
mavenCentral()
2121
}
2222
dependencies {
23-
classpath "com.android.tools.build:gradle:8.8.1"
23+
classpath "com.android.tools.build:gradle:8.9.1"
2424
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
25-
classpath "com.google.dagger:hilt-android-gradle-plugin:2.55"
25+
classpath "com.google.dagger:hilt-android-gradle-plugin:2.56.1"
2626
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10"
2727
}
2828
}
2929

3030
plugins {
31-
id 'com.diffplug.spotless' version '7.0.2'
31+
id 'com.diffplug.spotless' version '7.0.3'
3232
}
3333

3434
subprojects {
Binary file not shown.

AdvancedStateAndSideEffectsCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

AdvancedStateAndSideEffectsCodelab/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

BasicLayoutsCodelab/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ android {
6161
}
6262

6363
dependencies {
64-
def composeBom = platform('androidx.compose:compose-bom:2025.02.00')
64+
def composeBom = platform('androidx.compose:compose-bom:2025.03.01')
6565
implementation(composeBom)
6666
androidTestImplementation(composeBom)
6767

@@ -73,7 +73,7 @@ dependencies {
7373
implementation "androidx.compose.ui:ui-tooling-preview"
7474
implementation "com.google.android.material:material:1.12.0"
7575
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
76-
implementation 'androidx.activity:activity-compose:1.10.0'
76+
implementation 'androidx.activity:activity-compose:1.10.1'
7777
testImplementation 'junit:junit:4.13.2'
7878
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
7979
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'

BasicLayoutsCodelab/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ buildscript {
1919
mavenCentral()
2020
}
2121
dependencies {
22-
classpath "com.android.tools.build:gradle:8.8.1"
22+
classpath "com.android.tools.build:gradle:8.9.1"
2323
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
2424
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10"
2525
}
2626
}
2727

2828
plugins {
29-
id 'com.diffplug.spotless' version '7.0.2'
29+
id 'com.diffplug.spotless' version '7.0.3'
3030
}
3131

3232
subprojects {
Binary file not shown.

BasicLayoutsCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

BasicLayoutsCodelab/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

MigrationCodelab/app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,20 @@ android {
6060
}
6161

6262
dependencies {
63-
def composeBom = platform('androidx.compose:compose-bom:2025.02.00')
63+
def composeBom = platform('androidx.compose:compose-bom:2025.03.01')
6464
implementation(composeBom)
6565
androidTestImplementation(composeBom)
6666

6767
kapt "androidx.room:room-compiler:2.6.1"
6868
kapt "com.github.bumptech.glide:compiler:4.16.0"
6969
implementation "androidx.appcompat:appcompat:1.7.0"
70-
implementation "androidx.constraintlayout:constraintlayout:2.2.0"
70+
implementation "androidx.constraintlayout:constraintlayout:2.2.1"
7171
implementation "androidx.core:core-ktx:1.15.0"
7272
implementation "androidx.fragment:fragment-ktx:1.8.6"
7373
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.8.7"
7474
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.7"
75-
implementation "androidx.navigation:navigation-fragment-ktx:2.8.7"
76-
implementation "androidx.navigation:navigation-ui-ktx:2.8.7"
75+
implementation "androidx.navigation:navigation-fragment-ktx:2.8.9"
76+
implementation "androidx.navigation:navigation-ui-ktx:2.8.9"
7777
implementation "androidx.recyclerview:recyclerview:1.4.0"
7878
implementation "androidx.room:room-runtime:2.6.1"
7979
implementation "androidx.room:room-ktx:2.6.1"

MigrationCodelab/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ buildscript {
2121
}
2222

2323
dependencies {
24-
classpath "com.android.tools.build:gradle:8.8.1"
24+
classpath "com.android.tools.build:gradle:8.9.1"
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
26-
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.8.7"
26+
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.8.9"
2727
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10"
2828
}
2929
}
3030

3131
plugins {
32-
id 'com.diffplug.spotless' version '7.0.2'
32+
id 'com.diffplug.spotless' version '7.0.3'
3333
}
3434

3535
allprojects {
122 Bytes
Binary file not shown.

MigrationCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

MigrationCodelab/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

NavigationCodelab/app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ android {
8181
}
8282

8383
dependencies {
84-
def composeBom = platform('androidx.compose:compose-bom:2025.02.00')
84+
def composeBom = platform('androidx.compose:compose-bom:2025.03.01')
8585
implementation(composeBom)
8686
androidTestImplementation(composeBom)
8787

@@ -95,13 +95,13 @@ dependencies {
9595
implementation "androidx.compose.foundation:foundation"
9696
implementation "androidx.compose.material:material"
9797
implementation "androidx.compose.material:material-icons-extended"
98-
implementation "androidx.activity:activity-compose:1.10.0"
99-
implementation "androidx.navigation:navigation-compose:2.8.7"
98+
implementation "androidx.activity:activity-compose:1.10.1"
99+
implementation "androidx.navigation:navigation-compose:2.8.9"
100100
debugImplementation "androidx.compose.ui:ui-tooling"
101101

102102
// Testing dependencies
103103
androidTestImplementation "androidx.arch.core:core-testing:2.2.0"
104-
androidTestImplementation "androidx.navigation:navigation-testing:2.8.7"
104+
androidTestImplementation "androidx.navigation:navigation-testing:2.8.9"
105105
androidTestImplementation "androidx.test.espresso:espresso-contrib:3.6.1"
106106
androidTestImplementation "androidx.test.espresso:espresso-core:3.6.1"
107107

NavigationCodelab/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ buildscript {
2121
}
2222

2323
dependencies {
24-
classpath "com.android.tools.build:gradle:8.8.1"
24+
classpath "com.android.tools.build:gradle:8.9.1"
2525
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.10"
2626
classpath "org.jetbrains.kotlin:compose-compiler-gradle-plugin:2.1.10"
2727
}
2828
}
2929

3030
plugins {
31-
id 'com.diffplug.spotless' version '7.0.2'
31+
id 'com.diffplug.spotless' version '7.0.3'
3232
}
3333

3434
subprojects {
122 Bytes
Binary file not shown.

NavigationCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

NavigationCodelab/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

PerformanceCodelab/gradle/libs.versions.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
[versions]
22
coil = "2.7.0"
3-
com-android-application = "8.8.1"
4-
desugar_jdk_libs = "2.1.4"
3+
com-android-application = "8.9.1"
4+
desugar_jdk_libs = "2.1.5"
55
kotlinx-datetime = "0.6.1"
66
lifecycle-viewmodel-compose = "2.8.7"
77
material-icons-core = "1.7.8"
8-
media3 = "1.5.1"
8+
media3 = "1.6.0"
99
org-jetbrains-kotlin-android = "2.1.10"
1010
core-ktx = "1.15.0"
1111
junit = "4.13.2"
1212
androidx-test-ext-junit = "1.2.1"
1313
espresso-core = "3.6.1"
1414
lifecycle-runtime-ktx = "2.8.7"
15-
activity-compose = "1.10.0"
16-
compose-bom = "2025.02.00"
15+
activity-compose = "1.10.1"
16+
compose-bom = "2025.03.01"
1717
runtime-tracing = "1.7.8"
1818
tracing-ktx = "1.3.0-beta01"
1919
tracing-perfetto = "1.0.0"
2020
uiautomator = "2.3.0"
21-
benchmark = "1.3.3"
22-
androidx-baselineprofile = "1.3.3"
21+
benchmark = "1.3.4"
22+
androidx-baselineprofile = "1.3.4"
2323
profileinstaller = "1.4.1"
2424
material3 = "1.3.1"
25-
spotless = "7.0.2"
25+
spotless = "7.0.3"
2626
ktlint = "1.2.1"
2727

2828
[libraries]
Binary file not shown.

PerformanceCodelab/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

PerformanceCodelab/gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

0 commit comments

Comments
 (0)