File tree Expand file tree Collapse file tree 4 files changed +20
-5
lines changed
watchface/src/main/java/com/android/developers/androidify/watchface Expand file tree Collapse file tree 4 files changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ import java.security.cert.X509Certificate
3939import java.util.Calendar
4040import java.util.Date
4141
42- private val keyAlias : String
42+ private val keyAlias: String
4343 get() = " com.android.developers.androidify.ApkSigningKey-" + BuildConfig .BUILD_TYPE
4444private val certAlias: String
4545 get() = " com.android.developers.androidify.Cert-" + BuildConfig .BUILD_TYPE
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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+ */
116package com.android.developers.androidify.watchface.transfer
217
318import android.util.Log
@@ -27,4 +42,4 @@ object WearableApiAvailability {
2742 }
2843
2944 val TAG = " WearableApiAvailability"
30- }
45+ }
You can’t perform that action at this time.
0 commit comments