REmoved credentials from settings

This commit is contained in:
thmichel
2025-10-11 22:28:50 +02:00
parent d68aecd19c
commit 6609fed35d
2 changed files with 5 additions and 4 deletions

View File

@@ -24,7 +24,7 @@
Use "Monkey C: Edit Application" from the Visual Studio Code command palette Use "Monkey C: Edit Application" from the Visual Studio Code command palette
to update the application attributes. to update the application attributes.
--> -->
<iq:application id="a9077d22-5b9c-4a2e-b4ff-7846f77b13cb" type="watch-app" name="@Strings.AppName" entry="HomeAssistantApp" launcherIcon="@Drawables.LauncherIcon" minApiLevel="3.1.0"> <iq:application id="971834c4-e4fc-4825-801f-7ac9db0e3044" type="watch-app" name="@Strings.AppName" entry="HomeAssistantApp" launcherIcon="@Drawables.LauncherIcon" minApiLevel="3.1.0">
<!-- <!--
Use the following from the Visual Studio Code command palette to edit Use the following from the Visual Studio Code command palette to edit
the build targets: the build targets:
@@ -34,6 +34,7 @@
--> -->
<iq:products> <iq:products>
<iq:product id="epix2pro51mm"/> <iq:product id="epix2pro51mm"/>
<iq:product id="venu3"/>
</iq:products> </iq:products>
<!-- <!--
Use "Monkey C: Edit Permissions" from the Visual Studio Code command Use "Monkey C: Edit Permissions" from the Visual Studio Code command

View File

@@ -29,10 +29,10 @@ using Toybox.Time;
// //
(:glance, :background) (:glance, :background)
class Settings { class Settings {
private static var mApiKey as Lang.String? = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJlNThlZDk1MjIwMmU0MmYyOTVmODYyMGVjNDQwZDk1MCIsImlhdCI6MTc0MjkwNzc4MSwiZXhwIjoyMDU4MjY3NzgxfQ.kM8pXYPRADMrDGqmYYEloZH50avOWtCSzpoZbC0gze0"; private static var mApiKey as Lang.String? = "";
private static var mWebhookId as Lang.String? = ""; private static var mWebhookId as Lang.String? = "";
private static var mApiUrl as Lang.String? = "https://homeassistant.michel.ruhr/api"; private static var mApiUrl as Lang.String? = "";
private static var mConfigUrl as Lang.String? = "https://homeassistant.michel.ruhr/local/garmin-test.json"; private static var mConfigUrl as Lang.String? = "";
private static var mCacheConfig as Lang.Boolean = false; private static var mCacheConfig as Lang.Boolean = false;
private static var mClearCache as Lang.Boolean = false; private static var mClearCache as Lang.Boolean = false;
private static var mMenuCheck as Lang.Boolean = false; private static var mMenuCheck as Lang.Boolean = false;