AIFit-SDK for ble body fat scale
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppDelegate.m 561B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // AppDelegate.m
  3. // AIFit-Demo
  4. //
  5. // Created by wujia121 on 2018/9/1.
  6. // Copyright © 2018年 wujia121. All rights reserved.
  7. //
  8. #import "AppDelegate.h"
  9. #import <InetBleSDK/InetBleSDK.h>
  10. @interface AppDelegate ()
  11. @end
  12. @implementation AppDelegate
  13. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  14. //apply sdk key website http://sdk.aicare.net.cn/
  15. [INBluetoothManager configAppKey:@"885fd30a19f54fb0" secret:@"000fec8b4dadbca6a3d4e00875"];
  16. return YES;
  17. }
  18. @end