// Copyright 2014 The Flutter Authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.#include "AppDelegate.h"#include "DummyPlatformView.h"#include "GeneratedPluginRegistrant.h"@implementationAppDelegate-(BOOL)application:(UIApplication*)applicationdidFinishLaunchingWithOptions:(NSDictionary*)launchOptions{[GeneratedPluginRegistrantregisterWithRegistry:self];NSObject<FlutterPluginRegistrar>*registrar=[selfregistrarForPlugin:@"benchmarks/platform_views_layout/DummyPlatformViewPlugin"];DummyPlatformViewFactory*dummyPlatformViewFactory=[[DummyPlatformViewFactoryalloc]init];[registrarregisterViewFactory:dummyPlatformViewFactorywithId:@"benchmarks/platform_views_layout/DummyPlatformView"gestureRecognizersBlockingPolicy:FlutterPlatformViewGestureRecognizersBlockingPolicyEager];// Override point for customization after application launch.return[superapplication:applicationdidFinishLaunchingWithOptions:launchOptions];}@end