2026-08-22 16:09:35 +01:00
|
|
|
|
using Android.App;
|
|
|
|
|
|
using Android.Runtime;
|
|
|
|
|
|
using Avalonia;
|
|
|
|
|
|
using Avalonia.Android;
|
2026-05-29 01:29:36 +01:00
|
|
|
|
|
2026-08-22 16:09:35 +01:00
|
|
|
|
namespace PostIt.Android
|
2026-05-29 01:29:36 +01:00
|
|
|
|
{
|
2026-08-22 16:09:35 +01:00
|
|
|
|
[Application]
|
|
|
|
|
|
public class Application : AvaloniaAndroidApplication<App>
|
2026-05-29 01:29:36 +01:00
|
|
|
|
{
|
2026-08-22 16:09:35 +01:00
|
|
|
|
protected Application(nint javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
|
|
|
|
|
|
{
|
|
|
|
|
|
return base.CustomizeAppBuilder(builder)
|
|
|
|
|
|
.WithInterFont();
|
|
|
|
|
|
}
|
2026-05-29 01:29:36 +01:00
|
|
|
|
}
|
2026-08-22 16:09:35 +01:00
|
|
|
|
}
|