// // AppDelegate.h // JSJPCoach // // Created by apple on 2017/3/10. // Copyright © 2017年 Danson. All rights reserved. // #import #import #import //语音 #import //个推 #import // iOS10 及以上需导入 UserNotifications.framework #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0 #import #endif /// 个推开发者网站中申请App时,注册的AppId、AppKey、AppSecret #define kGtAppId @"Xwi8JW15Y39g6dj0A3nwy" #define kGtAppKey @"ytEJuBO6eP70ZWxHBXfsI8" #define kGtAppSecret @"26K8KYE3Zz93WSdAk2WrJ8" //bugly #define BUGLY_APP_ID @"9318ff6ab4" //百度地图 #define BaiDuMapAK @"DipP9sMjsT8r2KjDQ3NXphmcobv3TwYW" // ADCDN广告 #import @interface AppDelegate : UIResponder { BMKMapManager *_mapManager; } @property (strong, nonatomic) UIWindow *window; @property (nonatomic, assign) BOOL isBackgroundTask; //正在带教学员 @property (nonatomic, assign) BOOL isPeriodIng; //记录当前播放语音 好做关闭处理 @property (retain, nonatomic) AVSpeechSynthesizer *myAudioPlayer; //个推token @property(nonatomic,strong)NSString* token; // 本地广告是否已经展示 @property (nonatomic, assign) BOOL adIsShow; @end