AppDelegate.h 926 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 <GTSDK/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. /// 个推开发者网站中申请App时,注册的AppId、AppKey、AppSecret
  17. #define kGtAppId @"40sxADS8cV9TDpGxYgyIr"
  18. #define kGtAppKey @"upVdSNBI7L6vdDe8V0Iyo6"
  19. #define kGtAppSecret @"HH8IC2sg4WArzyFg9qpHN3"
  20. //bugly
  21. #define BUGLY_APP_ID @"dc465e4179"
  22. @interface AppDelegate : UIResponder <UIApplicationDelegate>
  23. @property (strong, nonatomic) UIWindow *window;
  24. //登录信息
  25. @property (nonatomic, retain)NSDictionary * userDic;
  26. @property (nonatomic, copy)NSString *clientId;
  27. @end