12345678910111213141516171819202122232425262728293031 |
- //
- // AppDelegate.m
- // AIFit-Demo
- //
- // Created by wujia121 on 2018/9/1.
- // Copyright © 2018年 wujia121. All rights reserved.
- //
-
- #import "AppDelegate.h"
- #import <InetBleSDK/InetBleSDK.h>
-
- @interface AppDelegate ()
-
- @end
-
- @implementation AppDelegate
-
-
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
-
- //apply sdk key website http://sdk.aicare.net.cn/
- [INBluetoothManager configAppKey:@"885fd30a19f54fb0" secret:@"000fec8b4dadbca6a3d4e00875"];
-
- return YES;
-
- }
-
-
-
-
- @end
|