mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-04 06:57:56 +00:00
12 lines
465 B
C#
12 lines
465 B
C#
using Android.App;
|
|
using Android.Content.PM;
|
|
using Android.OS;
|
|
|
|
namespace qControlMAUI
|
|
{
|
|
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
|
|
public class MainActivity : MauiAppCompatActivity
|
|
{
|
|
}
|
|
}
|