123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // AppDelegate.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/5.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <GTSDK/GeTuiSdk.h>
- #import <BaiduMapAPI_Base/BMKMapManager.h>
- // iOS10 及以上需导入 UserNotifications.framework
- #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
- #import <UserNotifications/UserNotifications.h>
- #endif
- //baidu
- /// 个推开发者网站中申请App时,注册的AppId、AppKey、AppSecret
- #define kGtAppId @"40sxADS8cV9TDpGxYgyIr"
- #define kGtAppKey @"upVdSNBI7L6vdDe8V0Iyo6"
- #define kGtAppSecret @"HH8IC2sg4WArzyFg9qpHN3"
- //bugly
- #define BUGLY_APP_ID @"dc465e4179"
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property (strong, nonatomic) UIWindow *window;
- //登录信息
- @property (nonatomic, retain)NSDictionary * userDic;
- @property (nonatomic, copy)NSString *clientId;
- @end
|