21 lines
555 B
Objective-C
21 lines
555 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// AppDelegate
|
|
//
|
|
// Created by jenmalli on 2022/3/16.
|
|
// Copyright © 2022 Tencent. All rights reserved.
|
|
//
|
|
#import "AppDelegate.h"
|
|
#import "GeneratedPluginRegistrant.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application
|
|
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
[GeneratedPluginRegistrant registerWithRegistry:self];
|
|
// Override point for customization after application launch.
|
|
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
|
}
|
|
|
|
@end
|