using Android.App; namespace PostIt.Android; /// /// Bare shell for Android. Avalonia /// 11 initialises its platform services from /// (which extends AvaloniaMainActivity<App>); no per-Application /// Avalonia setup is needed here. Kept only so that the [Application] entry /// stays present in the merged manifest, which the Android runtime expects /// when the manifest declares a custom android:name in the application tag. /// [Application] public class Application : Android.App.Application { public Application(nint javaReference, JniHandleOwnership transfer) : base(javaReference, transfer) { } }