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