* Merge and modernize the binding projects * Remove UWP and watchOS * Add the native assets projects * Rename bootstrapper.ps1 to build.ps1 * Add new device tests * Rework the test skipping feature --------- Co-authored-by: Jerome Laban <jerome.laban@nventive.com>
9 lines
269 B
C#
9 lines
269 B
C#
namespace SkiaSharpSample;
|
|
|
|
[Register(nameof(AppDelegate))]
|
|
public class AppDelegate : UIApplicationDelegate
|
|
{
|
|
public override UIWindow? Window { get; set; }
|
|
|
|
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) => true;
|
|
}
|