To initialize the Amplify API category, you are required to use the `Amplify.add()` method for the plugin followed by calling `Amplify.configure()`. **Add the following imports** to the top of your `AppDelegate.swift` file: ```swift import Amplify import AWSAPIPlugin ``` ```swift import Amplify import AmplifyPlugins ``` **Add the following code** Create a custom `AppDelegate`, and add to your `application:didFinishLaunchingWithOptions` method ```swift class AppDelegate: NSObject, UIApplicationDelegate { func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { do { try Amplify.add(plugin: AWSAPIPlugin(modelRegistration: AmplifyModels())) try Amplify.configure() print("Amplify configured with API plugin") } catch { print("Failed to initialize Amplify with \(error)") } return true } } ``` Then in the `App` scene, use `UIApplicationDelegateAdaptor` property wrapper to use your custom `AppDelegate` ```swift @main struct MyAmplifyApp: App { @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate var body: some Scene { WindowGroup { ContentView() } } } ``` Add to your AppDelegate's `application:didFinishLaunchingWithOptions` method ```swift func application( _ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? ) -> Bool { do { try Amplify.add(plugin: AWSAPIPlugin(modelRegistration: AmplifyModels())) try Amplify.configure() print("Amplify configured with API plugin") } catch { print("Failed to initialize Amplify with \(error)") } return true } ``` Upon building and running this application you should see the following in your console window: ```console Amplify configured with API plugin ```