123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // AppDelegate.h
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/5.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "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
- #define BAIDU_APPKEY @"4S8IEP6N5MQYL24rVBbqVGmKdSFrF3e8"
- /// 个推开发者网站中申请App时,注册的AppId、AppKey、AppSecret
- #define kGtAppId @"uf5pRQJ1zF62xARAVxv2n7"
- #define kGtAppKey @"ZtqufLrU387aAc9ipGjjj"
- #define kGtAppSecret @"x9rzIWIdNy7ysHI11mrrK3"
- //客服
- #define CUSTOMERSERVICE_APPKEY @"3ac0aa80-9dc6-11e7-957d-a30a08c3a2c0"
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- @property (strong, nonatomic) UIWindow *window;
- //登录信息
- @property (nonatomic, retain)NSDictionary * userDic;
- @property (nonatomic, copy)NSString *clientId;
- @end
|