123456789101112131415161718192021222324252627 |
- //
- // AppDelegate.m
- // AILinkBleSDKDemo
- //
- // Created by iot_user on 2020/4/9.
- // Copyright © 2020 IOT. All rights reserved.
- //
-
- #import "AppDelegate.h"
- #import <AILinkBleSDK/ELBluetoothManager.h>
-
- @interface AppDelegate ()
-
- @end
-
- @implementation AppDelegate
-
-
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- // Override point for customization after application launch.
- // [ELBluetoothManager setAppKey:@"df97ca735924fff0" appSecret:@"00912bb4e6b4a0c1363618b3f8"];
- return YES;
- }
-
-
-
- @end
|