1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //
- // AppDelegate.h
- // JSJPCoach
- //
- // Created by apple on 2017/3/10.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <BaiduMapAPI_Base/BMKMapManager.h>
- #import <BMKLocationkit/BMKLocationComponent.h>
- //语音
- #import <AVFoundation/AVFoundation.h>
- //个推
- #import <GTSDK/GeTuiSdk.h>
- // iOS10 及以上需导入 UserNotifications.framework
- #if __IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_10_0
- #import <UserNotifications/UserNotifications.h>
- #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 <ADCDN/ADCDN.h>
- @interface AppDelegate : UIResponder <UIApplicationDelegate>
- {
- 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
|