Gestiti allegati da galleria e fotocamera e aggiunto sentry

This commit is contained in:
2026-02-17 10:23:46 +01:00
parent c1a133c61e
commit 544c9e8237
13 changed files with 220 additions and 76 deletions

View File

@@ -4,5 +4,12 @@ namespace SteUp.Maui.Core.System;
public class GenericSystemService : IGenericSystemService
{
public string GetCurrentAppVersion() => AppInfo.VersionString;
public string GetCurrentAppVersion()
{
#if DEBUG
return $"v{AppInfo.VersionString} [DEBUG]";
#else
return $"v{AppInfo.VersionString}";
#endif
}
}