Skip to content

Commit

Permalink
* some more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
amoledwatchfaces committed Oct 5, 2024
1 parent 4eb4622 commit 8f7e2c5
Show file tree
Hide file tree
Showing 23 changed files with 399 additions and 45 deletions.
46 changes: 46 additions & 0 deletions .idea/appInsightsSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

123 changes: 123 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions .idea/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/other.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ tasks.register("clean", Delete::class) {
buildscript {

/** Set version for wear & mobile modules **/
val versionCode by extra(10000362)
val versionName by extra("3.6.2")
val versionCode by extra(10000363)
val versionName by extra("3.6.3")

dependencies {
classpath ("com.android.tools.build:gradle:8.7.0")
Expand Down
7 changes: 2 additions & 5 deletions wear/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
@file:Suppress("UnstableApiUsage")
import java.io.FileInputStream
import java.util.Properties


plugins {
id ("com.android.application")
id ("org.jetbrains.kotlin.android")
Expand Down Expand Up @@ -76,8 +74,7 @@ android {
dependencies {
val composeUiVersion = "1.7.2"
val composeWearVersion = "1.4.0"

// NEW MOON / SUNRISE / SUNSET COMP

//request permission
implementation ("com.google.accompanist:accompanist-permissions:0.34.0")
//location
Expand Down Expand Up @@ -105,7 +102,7 @@ dependencies {

androidTestImplementation ("androidx.compose.ui:ui-test-junit4:$composeUiVersion")
debugImplementation ("androidx.compose.ui:ui-tooling:$composeUiVersion")
debugImplementation ("androidx.compose.ui:ui-test-manifest:$composeUiVersion")
debugImplementation ("androidx.compose.ui:ui-test-manifest:1.7.3")

// DataStore
implementation ("androidx.datastore:datastore:1.1.1")
Expand Down
5 changes: 2 additions & 3 deletions wear/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
</intent-filter>
<meta-data android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS" android:value="3600"/>

<meta-data
android:name="android.support.wearable.complications.SUPPORTED_TYPES"
android:value="SHORT_TEXT,LONG_TEXT" />
Expand All @@ -238,8 +237,8 @@
<intent-filter>
<action android:name="android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST" />
</intent-filter>

<meta-data android:name="android.support.wearable.complications.SUPPORTED_TYPES" android:value="SHORT_TEXT,LONG_TEXT" />
<meta-data android:name="android.support.wearable.complications.UPDATE_PERIOD_SECONDS" android:value="3600"/>
<meta-data android:name="android.support.wearable.complications.SUPPORTED_TYPES" android:value="SHORT_TEXT,LONG_TEXT,RANGED_VALUE" />
<meta-data android:name="android.support.wearable.complications.PROVIDER_CONFIG_ACTION" android:value="com.weartools.weekdayutccomp.CONFIG_COMPLICATION" />
</service>
<service android:name=".complication.DayAndWeekComplicationService"
Expand Down
Loading

0 comments on commit 8f7e2c5

Please sign in to comment.