Files
MewtocolNet/MewExplorer/Platforms/Android/MainActivity.cs
2023-06-28 23:31:07 +02:00

9 lines
399 B
C#

using Android.App;
using Android.Content.PM;
using Android.OS;
namespace MewExplorer;
[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
public class MainActivity : MauiAppCompatActivity {
}