Skip to content

Commit b7de6ea

Browse files
committed
Apply spotless
1 parent 92b2c31 commit b7de6ea

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

watchface/src/main/java/com/android/developers/androidify/watchface/creator/Signer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import java.security.cert.X509Certificate
3939
import java.util.Calendar
4040
import java.util.Date
4141

42-
private val keyAlias : String
42+
private val keyAlias: String
4343
get() = "com.android.developers.androidify.ApkSigningKey-" + BuildConfig.BUILD_TYPE
4444
private val certAlias: String
4545
get() = "com.android.developers.androidify.Cert-" + BuildConfig.BUILD_TYPE

watchface/src/main/java/com/android/developers/androidify/watchface/transfer/WearAssetTransmitter.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class WearAssetTransmitterImpl @Inject constructor(
8383
override val watchFaceInstallationUpdates = callbackFlow {
8484
trySend(WatchFaceInstallationStatus.NotStarted)
8585

86-
var listener : MessageClient.OnMessageReceivedListener? = null
86+
var listener: MessageClient.OnMessageReceivedListener? = null
8787

8888
/**
8989
* Some devices don't have access to Wearable API via Play Services, so it is necessary to
@@ -100,7 +100,7 @@ class WearAssetTransmitterImpl @Inject constructor(
100100
}
101101
}
102102
}
103-
messageClient.addListener(listener).await()
103+
messageClient.addListener(listener).await()
104104
}
105105
awaitClose {
106106
listener?.let {

watchface/src/main/java/com/android/developers/androidify/watchface/transfer/WearDeviceRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class WearDeviceRepositoryImpl @Inject constructor(
5757
val reachableCapability =
5858
capabilityClient.getCapability(
5959
ANDROIDIFY_INSTALLED,
60-
CapabilityClient.FILTER_REACHABLE
60+
CapabilityClient.FILTER_REACHABLE,
6161
)
6262
.await()
6363

watchface/src/main/java/com/android/developers/androidify/watchface/transfer/WearableApiAvailability.kt

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2025 The Android Open Source Project
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package com.android.developers.androidify.watchface.transfer
217

318
import android.util.Log
@@ -27,4 +42,4 @@ object WearableApiAvailability {
2742
}
2843

2944
val TAG = "WearableApiAvailability"
30-
}
45+
}

0 commit comments

Comments
 (0)