AppDelegate.h 1020 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // AppDelegate.h
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/5.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "GeTuiSdk.h"
  10. #import <BaiduMapAPI_Base/BMKMapManager.h>
  11. // iOS10 及以上需导入 UserNotifications.framework
  12. #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
  13. #import <UserNotifications/UserNotifications.h>
  14. #endif
  15. //baidu
  16. #define BAIDU_APPKEY @"4S8IEP6N5MQYL24rVBbqVGmKdSFrF3e8"
  17. /// 个推开发者网站中申请App时,注册的AppId、AppKey、AppSecret
  18. #define kGtAppId @"uf5pRQJ1zF62xARAVxv2n7"
  19. #define kGtAppKey @"ZtqufLrU387aAc9ipGjjj"
  20. #define kGtAppSecret @"x9rzIWIdNy7ysHI11mrrK3"
  21. //客服
  22. #define CUSTOMERSERVICE_APPKEY @"3ac0aa80-9dc6-11e7-957d-a30a08c3a2c0"
  23. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  24. @property (strong, nonatomic) UIWindow *window;
  25. //登录信息
  26. @property (nonatomic, retain)NSDictionary * userDic;
  27. @property (nonatomic, copy)NSString *clientId;
  28. @end