mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-14 20:48:00 +00:00
12 lines
477 B
C#
12 lines
477 B
C#
|
|
using Android.App;
|
|||
|
|
using Android.Content.PM;
|
|||
|
|
using Android.OS;
|
|||
|
|
|
|||
|
|
namespace Microsoft.ML.OnnxRuntime.Tests.MAUI
|
|||
|
|
{
|
|||
|
|
[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
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|