Files
WeatherApp_MAUI/Weather/Platforms/Android/MainActivity.cs
T
2024-04-04 23:32:46 +02:00

12 lines
414 B
C#

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