41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using ZXing.Net.Maui.Controls;
|
|
|
|
namespace Jugenddienst_Stunden;
|
|
|
|
/// <summary>
|
|
/// Das Hauptprogramm.
|
|
/// </summary>
|
|
public static class MauiProgram {
|
|
public static MauiApp CreateMauiApp() {
|
|
var builder = MauiApp.CreateBuilder();
|
|
builder
|
|
.UseMauiApp<App>()
|
|
.ConfigureFonts(fonts => {
|
|
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
|
|
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
|
|
})
|
|
.UseBarcodeReader();
|
|
|
|
//Preferences.Default.Set("apiKey", "M3xneWlWNG85TmNIcmo1NnpxWkxVYS9JMDBFRlV8aHR0cHM6Ly9zdHVuZGVuLmpkLWxhbmEtdGlzZW5zLml0L2FwcGFwaQ==");
|
|
//Preferences.Default.Set("name", "Default: Lea");
|
|
//Preferences.Default.Set("surname", "Mair");
|
|
//Preferences.Default.Set("EmployeeId", 3);
|
|
//Preferences.Default.Set("apiUrl", "https://stunden.jd-lana-tisens.it/appapi");
|
|
|
|
#if DEBUG
|
|
Preferences.Default.Set("apiKey", "M3xneWlWNG85TmNIcmo1NnpxWkxVYS9JMDBFRlV8aHR0cDovL2hvdXJzLmRhdW5pLm1pbmUubnU6ODEvYXBwYXBp");
|
|
Preferences.Default.Set("name", "Testserver: Lea");
|
|
Preferences.Default.Set("surname", "Mair");
|
|
Preferences.Default.Set("EmployeeId", 3);
|
|
Preferences.Default.Set("apiUrl", "http://hours.dauni.mine.nu:81/appapi");
|
|
|
|
builder.Logging.AddDebug();
|
|
#endif
|
|
|
|
return builder.Build();
|
|
}
|
|
|
|
|
|
}
|