mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 14:51:44 +01:00
15 lines
350 B
C#
15 lines
350 B
C#
using System;
|
|
using Android.App;
|
|
using Android.Runtime;
|
|
|
|
namespace Borepin.Droid
|
|
{
|
|
[Application(Label = "FabAccess", Icon = "@mipmap/ic_launcher")]
|
|
public class MainApplication : Application
|
|
{
|
|
public MainApplication(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |