Files
IPTVplayer/TV Player/Platforms/Android/MainActivity.cs
T
2024-01-15 07:49:55 +02:00

12 lines
416 B
C#

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