24 lines
620 B
C#
24 lines
620 B
C#
using System;
|
|
|
|
using Android.App;
|
|
using Android.Content.PM;
|
|
using Android.Runtime;
|
|
using Android.Views;
|
|
using Android.Widget;
|
|
using Android.OS;
|
|
|
|
namespace OrarendApp.Droid
|
|
{
|
|
[Activity (Label = "OrarendApp", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
|
|
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsApplicationActivity
|
|
{
|
|
protected override void OnCreate (Bundle bundle)
|
|
{
|
|
base.OnCreate (bundle);
|
|
|
|
global::Xamarin.Forms.Forms.Init (this, bundle);
|
|
LoadApplication (new OrarendApp.App ());
|
|
}
|
|
}
|
|
}
|
|
|