Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/wear-os-hex-editor-watchface.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2023-08-13 13:22:40 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2023-08-13 13:22:40 +0300
commit7d28d338c81eac6293210050c776b452d0b849fc (patch)
treea1d9fe574e643794879d9d23328d85ac1f9987f5
parent232a5af1d00d9f09dc716ffc649f319c4e39e434 (diff)
SDK 33v1.7
-rw-r--r--app/build.gradle11
-rw-r--r--app/src/main/AndroidManifest.xml4
-rw-r--r--app/src/main/res/raw/watchface.xml2
3 files changed, 8 insertions, 9 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 76e5aac..f0d8cd5 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -3,13 +3,13 @@ plugins {
}
android {
- compileSdk 34
+ compileSdk 33
defaultConfig {
applicationId "com.clusterrr.hexeditorwatchface"
minSdk 30
- targetSdk 34
- versionCode 19
+ targetSdk 33
+ versionCode 22
versionName "1.7"
}
@@ -21,7 +21,7 @@ android {
}
namespace 'com.clusterrr.hexeditorwatchface'
- applicationVariants.all { variant ->
+ applicationVariants.configureEach { variant ->
variant.outputs.all { output ->
def formattedDate = new Date().format('yyMMdd-HHmmss')
outputFileName = "HexEditorWatchface-v${defaultConfig.versionCode}-${formattedDate}.apk"
@@ -31,7 +31,7 @@ android {
dependencies {
implementation 'androidx.recyclerview:recyclerview:1.3.1'
- implementation 'androidx.health:health-services-client:1.1.0-alpha01'
+ implementation 'androidx.health:health-services-client:1.0.0-rc01'
implementation 'com.google.android.support:wearable:2.9.0'
implementation 'com.google.android.gms:play-services-base:18.2.0'
implementation 'androidx.palette:palette:1.0.0'
@@ -40,5 +40,6 @@ dependencies {
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.wear:wear:1.3.0'
implementation 'com.google.guava:guava:29.0-android'
+ implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20"
compileOnly 'com.google.android.wearable:wearable:2.9.0'
} \ No newline at end of file
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 1792fa8..f0747c6 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -23,10 +23,6 @@
android:supportsRtl="true"
android:icon="@drawable/icon">
- <property
- android:name="com.google.wear.watchface.format.version"
- android:value="1" />
-
<meta-data
android:name="com.google.android.wearable.standalone"
android:value="true" />
diff --git a/app/src/main/res/raw/watchface.xml b/app/src/main/res/raw/watchface.xml
new file mode 100644
index 0000000..1f11a1b
--- /dev/null
+++ b/app/src/main/res/raw/watchface.xml
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8"?>
+<WatchFace/> \ No newline at end of file