From 7d28d338c81eac6293210050c776b452d0b849fc Mon Sep 17 00:00:00 2001 From: Alexey 'Cluster' Avdyukhin Date: Sun, 13 Aug 2023 14:22:40 +0400 Subject: SDK 33 --- app/build.gradle | 11 ++++++----- app/src/main/AndroidManifest.xml | 4 ---- app/src/main/res/raw/watchface.xml | 2 ++ 3 files changed, 8 insertions(+), 9 deletions(-) create mode 100644 app/src/main/res/raw/watchface.xml 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"> - - 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 @@ + + \ No newline at end of file -- cgit v1.2.3