Add managed UIKit iOS client
.NET port / test (macos-latest) (push) Canceled after 0s
.NET port / test (ubuntu-24.04) (push) Canceled after 0s
.NET port / test (windows-latest) (push) Canceled after 0s
.NET port / apple-client (push) Canceled after 0s
.NET port / cpp-conformance (push) Canceled after 0s
.NET port / test (macos-latest) (push) Canceled after 0s
.NET port / test (ubuntu-24.04) (push) Canceled after 0s
.NET port / test (windows-latest) (push) Canceled after 0s
.NET port / apple-client (push) Canceled after 0s
.NET port / cpp-conformance (push) Canceled after 0s
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using Foundation;
|
||||
using UIKit;
|
||||
|
||||
namespace VoiceCat.iOS;
|
||||
|
||||
[Register("AppDelegate")]
|
||||
internal sealed class AppDelegate : UIApplicationDelegate
|
||||
{
|
||||
public override bool FinishedLaunching(UIApplication application, NSDictionary? launchOptions)
|
||||
{
|
||||
AppModel.Shared.Load();
|
||||
IosAudioRouter.Shared.Load();
|
||||
return true;
|
||||
}
|
||||
|
||||
public override UISceneConfiguration GetConfiguration(UIApplication application, UISceneSession connectingSceneSession,
|
||||
UISceneConnectionOptions options) => new("Default Configuration", connectingSceneSession.Role)
|
||||
{ DelegateType = typeof(SceneDelegate) };
|
||||
}
|
||||
Reference in New Issue
Block a user