mirror of
https://gitlab.com/fabinfra/fabaccess/borepin_tmp.git
synced 2025-03-12 14:51:43 +01:00
23 lines
584 B
C#
23 lines
584 B
C#
using Android.App;
|
|
using Android.Content.PM;
|
|
|
|
using Avalonia;
|
|
using Avalonia.Android;
|
|
|
|
namespace Borepin.Android;
|
|
|
|
[Activity(
|
|
Label = "Borepin.Android",
|
|
Theme = "@style/MyTheme.NoActionBar",
|
|
Icon = "@drawable/icon",
|
|
MainLauncher = true,
|
|
ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize | ConfigChanges.UiMode)]
|
|
public class MainActivity : AvaloniaMainActivity<App>
|
|
{
|
|
protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
|
|
{
|
|
return base.CustomizeAppBuilder(builder)
|
|
.WithInterFont();
|
|
}
|
|
}
|