You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
496 B
19 lines
496 B
using Android.App;
|
|
using Android.Content.PM;
|
|
using Android.OS;
|
|
|
|
namespace BookApp
|
|
{
|
|
[Activity(
|
|
Theme = "@style/Maui.SplashTheme",
|
|
MainLauncher = true,
|
|
ConfigurationChanges = ConfigChanges.ScreenSize
|
|
| ConfigChanges.Orientation
|
|
| ConfigChanges.UiMode
|
|
| ConfigChanges.ScreenLayout
|
|
| ConfigChanges.SmallestScreenSize
|
|
| ConfigChanges.Density
|
|
)]
|
|
public class MainActivity : MauiAppCompatActivity { }
|
|
}
|