Skip to content

Commit

Permalink
Review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dshokouhi committed Oct 20, 2021
1 parent 2c0bbec commit 89ece3d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Expand Up @@ -133,7 +133,6 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect:1.5.31")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2")

implementation("com.google.dagger:dagger:2.39.1")
kapt("com.google.dagger:dagger-compiler:2.39.1")
Expand Down Expand Up @@ -164,6 +163,7 @@ dependencies {
"fullImplementation"("com.google.firebase:firebase-iid:21.1.0")
"fullImplementation"("com.google.firebase:firebase-messaging:22.0.0")
"fullImplementation"("io.sentry:sentry-android:5.2.3")
"fullImplementation"("org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.2")

implementation("androidx.work:work-runtime-ktx:2.6.0")
implementation("androidx.biometric:biometric:1.1.0")
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/values/strings.xml
Expand Up @@ -628,4 +628,7 @@ like to connect to:</string>
<string name="store_request_successful">Request to install app on wear device sent successfully</string>
<string name="store_request_unsuccessful">Play Store Request Failed. Wear device(s) may not support Play Store, that is, the Wear device may be version 1.0.</string>
<string name="install_app">Install App on Wear Device</string>
<string name="wear_os_category">Wear OS</string>
<string name="wear_os_settings_title">Wear OS Settings</string>
<string name="wear_os_settings_summary">Manage Wear OS App</string>
</resources>
6 changes: 3 additions & 3 deletions app/src/main/res/xml/preferences.xml
Expand Up @@ -60,12 +60,12 @@
<PreferenceCategory
android:key="wear_category"
app:isPreferenceVisible="false"
android:title="Wear OS">
android:title="@string/wear_os_category">
<Preference
android:key="wear_settings"
android:title="Wear OS Settings"
android:title="@string/wear_os_settings_title"
android:icon="@drawable/ic_baseline_watch_24"
android:summary="Manage Wear OS App" />
android:summary="@string/wear_os_settings_summary" />
</PreferenceCategory>
<PreferenceCategory
android:title="@string/other_settings">
Expand Down

0 comments on commit 89ece3d

Please sign in to comment.