diff --git a/phoneApp/build.gradle b/phoneApp/build.gradle index 5b6cf4f..82eef71 100644 --- a/phoneApp/build.gradle +++ b/phoneApp/build.gradle @@ -9,8 +9,8 @@ android { applicationId "com.corvettecole.pixelwatchface" minSdkVersion 21 targetSdkVersion 29 - versionCode 33 - versionName "1.5.5-RC4" + versionCode 34 + versionName "1.5.5" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" diff --git a/phoneApp/src/main/res/layout/activity_main.xml b/phoneApp/src/main/res/layout/activity_main.xml index b713d73..50bf6b6 100644 --- a/phoneApp/src/main/res/layout/activity_main.xml +++ b/phoneApp/src/main/res/layout/activity_main.xml @@ -17,8 +17,7 @@ + android:orientation="vertical"> - - + + Pixel Watch Face DebugActivity API key from your Dark Sky developer account - After the free weather APIs previously used hit their limit, I spent several months writing my own weather service so that I could keep this app subscription free. + After the free weather APIs I used hit their limit, I spent several months writing my own weather service so that I could keep this app subscription free. Weather can now be activated with a small one-time purchase below. This money will support current and future development of the app, with many exciting updates planned. If you cannot afford to support development or don\'t want to, you can request an unlock code for free. Thanks for using my app :) Support now (%s) @@ -24,5 +24,5 @@ Show the current weather as an icon Show temperature to 1 decimal place Dark Sky support has been discontinued. These options are only present if you have previously entered a Dark Sky key. - Use Dark Sky to provide weather data + Use Dark Sky as a weather provider. The default providers will still be used as fallbacks diff --git a/wearApp/build.gradle b/wearApp/build.gradle index 3ed8f57..6467230 100644 --- a/wearApp/build.gradle +++ b/wearApp/build.gradle @@ -7,8 +7,8 @@ android { applicationId "com.corvettecole.pixelwatchface" minSdkVersion 23 targetSdkVersion 29 - versionCode 1067 - versionName "1.5.5-RC4" + versionCode 1068 + versionName "1.5.5" multiDexEnabled true } compileOptions { diff --git a/wearApp/src/main/AndroidManifest.xml b/wearApp/src/main/AndroidManifest.xml index 51a2605..fde8f1f 100644 --- a/wearApp/src/main/AndroidManifest.xml +++ b/wearApp/src/main/AndroidManifest.xml @@ -24,15 +24,15 @@ + android:name=".ui.WeatherUpdateActivity" /> + android:name=".ui.CompanionNotifyActivity" /> + android:name=".ui.WatchPermissionRequestActivity" /> diff --git a/wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/CompanionNotifyActivity.java b/wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/CompanionNotifyActivity.java similarity index 99% rename from wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/CompanionNotifyActivity.java rename to wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/CompanionNotifyActivity.java index 3f512a2..9bfb4c0 100644 --- a/wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/CompanionNotifyActivity.java +++ b/wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/CompanionNotifyActivity.java @@ -1,4 +1,4 @@ -package com.corvettecole.pixelwatchface.watchface; +package com.corvettecole.pixelwatchface.ui; import android.content.Intent; import android.content.res.ColorStateList; diff --git a/wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/PixelWatchFace.java b/wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/PixelWatchFace.java similarity index 99% rename from wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/PixelWatchFace.java rename to wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/PixelWatchFace.java index 30b6d6c..25aaede 100644 --- a/wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/PixelWatchFace.java +++ b/wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/PixelWatchFace.java @@ -1,4 +1,4 @@ -package com.corvettecole.pixelwatchface.watchface; +package com.corvettecole.pixelwatchface.ui; import static com.corvettecole.pixelwatchface.util.Constants.INFO_BAR_Y_SPACING_RATIO; import static com.corvettecole.pixelwatchface.util.Constants.KEY_WEATHER_JSON; diff --git a/wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/WatchPermissionRequestActivity.java b/wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/WatchPermissionRequestActivity.java similarity index 98% rename from wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/WatchPermissionRequestActivity.java rename to wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/WatchPermissionRequestActivity.java index 0f99391..377eec7 100644 --- a/wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/WatchPermissionRequestActivity.java +++ b/wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/WatchPermissionRequestActivity.java @@ -1,4 +1,4 @@ -package com.corvettecole.pixelwatchface.watchface; +package com.corvettecole.pixelwatchface.ui; import android.annotation.SuppressLint; import android.content.pm.PackageManager; diff --git a/wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/WeatherUpdateActivity.java b/wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/WeatherUpdateActivity.java similarity index 97% rename from wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/WeatherUpdateActivity.java rename to wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/WeatherUpdateActivity.java index 8cd2d90..9d90ddf 100644 --- a/wearApp/src/main/java/com/corvettecole/pixelwatchface/watchface/WeatherUpdateActivity.java +++ b/wearApp/src/main/java/com/corvettecole/pixelwatchface/ui/WeatherUpdateActivity.java @@ -1,4 +1,4 @@ -package com.corvettecole.pixelwatchface.watchface; +package com.corvettecole.pixelwatchface.ui; import android.content.Intent; import android.content.res.ColorStateList;