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>2022-03-15 13:08:56 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2022-03-15 13:08:56 +0300
commitbb3892e64656fdabffcb7eb9d7fd0591bb5e133b (patch)
tree301ccd703a5331998249f0bba48238324b8206c4
parentf176bdff4c38cc54e78e4e59dd3280249911bb07 (diff)
Support for more watches
-rw-r--r--app/build.gradle4
-rw-r--r--app/src/main/AndroidManifest.xml7
2 files changed, 9 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle
index fc619e1..2e6d320 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -7,9 +7,9 @@ android {
defaultConfig {
applicationId "com.clusterrr.hexeditorwatchface"
- minSdk 30
+ minSdk 23
targetSdk 32
- versionCode 2
+ versionCode 4
versionName "1.0"
}
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index ff85b44..f07df15 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -10,6 +10,13 @@
<uses-feature android:name="android.hardware.type.watch" />
+ <supports-screens
+ android:anyDensity="true"
+ android:largeScreens="true"
+ android:normalScreens="true"
+ android:smallScreens="true"
+ android:xlargeScreens="true" />
+
<application
android:allowBackup="true"
android:label="@string/app_name"