Files
yinmeng-ios/xplan-ios/Appdelegate/AppDelegate+ThirdConfig.m

198 lines
6.6 KiB
Mathematica
Raw Normal View History

2021-09-13 18:56:16 +08:00
//
// AppDelegate+ThirdConfig.m
// xplan-ios
//
// Created by on 2021/9/13.
//
#import "AppDelegate+ThirdConfig.h"
///Third
#import <ShareSDK/ShareSDK.h>
2021-10-21 12:01:21 +08:00
#import <NIMSDK/NIMSDK.h>
2021-12-06 17:31:52 +08:00
#import <UMCommon/UMCommon.h>
2021-12-08 16:43:26 +08:00
#import <UserNotifications/UNUserNotificationCenter.h>
2022-10-17 17:54:04 +08:00
#import <Bugly/Bugly.h>
2021-09-13 18:56:16 +08:00
///Tool
#import "XPConstant.h"
2021-11-16 19:56:37 +08:00
#import "CustomAttachmentDecoder.h"
2022-08-17 18:55:45 +08:00
#import "QEmotionHelper.h"
2022-10-31 12:15:01 +08:00
#import "XPAdvertiseView.h"
#import "XPAdImageTool.h"
#import "XPMacro.h"
#import "AdvertiseModel.h"
#import "XPWebViewController.h"
#import "XPRoomViewController.h"
#import "XCCurrentVCStackManager.h"
2021-09-13 18:56:16 +08:00
2021-12-06 17:31:52 +08:00
UIKIT_EXTERN NSString * kYinyouPrivateKey;
2022-10-31 12:15:01 +08:00
UIKIT_EXTERN NSString * adImageName;
2021-12-06 17:31:52 +08:00
2021-09-13 18:56:16 +08:00
@implementation AppDelegate (ThirdConfig)
///
- (void)initThirdConfig {
[self configShareSDK];
2021-10-21 12:01:21 +08:00
[self configNIMSDK];
2021-12-06 17:31:52 +08:00
[self configUMengSDK];
2022-08-17 18:55:45 +08:00
[self initEmojiData];
2022-10-17 17:54:04 +08:00
[self configBugly];
2021-09-13 18:56:16 +08:00
}
- (void)configShareSDK {
[ShareSDK registPlatforms:^(SSDKRegister *platformsRegister) {
//QQ
2022-09-23 18:12:28 +08:00
NSString *universalLink = @"https://a6lno.share2dlink.com/";
NSString *qqUniversalLink = @"https://a6lno.share2dlink.com/qq_conn/101902443";
[platformsRegister setupQQWithAppId:KeyWithType(KeyType_QQAppid) appkey:KeyWithType(KeyType_QQSecret) enableUniversalLink:YES universalLink:qqUniversalLink];
[platformsRegister setupWeChatWithAppId:KeyWithType(KeyType_WechatAppid) appSecret:KeyWithType(KeyType_WechatSecret) universalLink:universalLink];
}];
2021-09-13 18:56:16 +08:00
}
2021-10-21 12:01:21 +08:00
- (void)configNIMSDK {
// NIMSDK
NSString *appKey = KeyWithType(KeyType_NetEase);
NIMSDKOption *option = [NIMSDKOption optionWithAppKey:appKey];
option.apnsCername = KeyWithType(KeyType_APNSCer);
[[NIMSDK sharedSDK] registerWithOption:option];
2021-11-16 19:56:37 +08:00
// NIM SDK
2021-11-26 20:25:23 +08:00
[NIMCustomObject registerCustomDecoder:[[CustomAttachmentDecoder alloc] init]];
#ifdef DEBUG
[NIMSDKConfig sharedConfig].enabledHttpsForInfo = NO;
[NIMSDKConfig sharedConfig].enabledHttpsForMessage = NO;
#endif
2021-12-08 16:43:26 +08:00
if (@available(iOS 11.0, *)){
UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
[center requestAuthorizationWithOptions:(UNAuthorizationOptionBadge | UNAuthorizationOptionSound | UNAuthorizationOptionAlert) completionHandler:^(BOOL granted, NSError * _Nullable error) {
}];
}
[[UIApplication sharedApplication] registerForRemoteNotifications];
2021-10-21 12:01:21 +08:00
}
2022-10-17 17:54:04 +08:00
/**
Bugly
*/
- (void) configBugly {
BuglyConfig *config = [[BuglyConfig alloc] init];
config.channel = @"App Enterprise";
config.blockMonitorEnable = YES; //
config.blockMonitorTimeout = 5;
config.unexpectedTerminatingDetectionEnable = YES; // 退
#ifdef DEBUG
config.debugMode = YES; // debug
2022-11-10 12:11:25 +08:00
config.reportLogLevel = BuglyLogLevelWarn; //
2022-11-01 17:10:13 +08:00
[Bugly startWithAppId:KeyWithType(KeyTyoe_BuglyKey) config:config];
2022-10-17 17:54:04 +08:00
#else
config.debugMode = NO; // release
config.reportLogLevel = BuglyLogLevelWarn; //
2022-11-01 17:10:13 +08:00
[Bugly startWithAppId:KeyWithType(KeyTyoe_BuglyKey) config:config];
2022-10-17 17:54:04 +08:00
#endif
}
2021-12-06 17:31:52 +08:00
#pragma mark - SDK
- (void)configUMengSDK {
//
if ([[NSUserDefaults standardUserDefaults] objectForKey:kYinyouPrivateKey]) {
[UMConfigure initWithAppkey:KeyWithType(keyType_UMengAppKey) channel:KeyWithType(keyType_UMengAppChannel)];
}
}
2022-08-17 18:55:45 +08:00
#pragma mark -
- (void)initEmojiData {
NSArray * dicArray = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"emoji" ofType:@"plist"]];
NSDictionary * dic = [dicArray firstObject];
NSArray * emojiArray = dic[@"data"];
NSMutableArray * array = [NSMutableArray array];
for (int i = 0; i < emojiArray.count; i++) {
NSDictionary * dic = [emojiArray objectAtIndex:i];
UIImage * image = [UIImage imageNamed:dic[@"file"]];
QEmotion * info = [[QEmotion alloc] init];
info.identifier = dic[@"id"];
info.image = image;
info.displayName = dic[@"tag"];
[array addObject:info];
}
//
QEmotionHelper *faceManager = [QEmotionHelper sharedEmotionHelper];
faceManager.emotionArray = array;
}
2022-10-31 12:15:01 +08:00
#pragma mark - 广
/**
广
*/
- (void)setupLaunchADView {
NSUserDefaults * kUserDefaults = NSUserDefaults.standardUserDefaults;
// 广
NSString *filePath = [XPAdImageTool.shareImageTool getFilePathWithImageName:[kUserDefaults valueForKey:adImageName]];
BOOL isExist = [XPAdImageTool.shareImageTool isFileExistWithFilePath:filePath];
NSUserDefaults *userDefault = [NSUserDefaults standardUserDefaults];
if ([userDefault integerForKey:@"adShow"]) {
[userDefault setInteger:[userDefault integerForKey:@"adShow"]+1 forKey:@"adShow"];
} else {
[userDefault setInteger:1 forKey:@"adShow"];
}
if (isExist) {//
if ([userDefault integerForKey:@"adShow"] > 4) {
@kWeakify(self);
NSString *imageName = [kUserDefaults valueForKey:adImageName];
AdvertiseModel *info = [XPAdImageTool.shareImageTool getAdInfoFromCacheInMainWith:imageName];
XPAdvertiseView *advertiseView = [[XPAdvertiseView alloc] initWithFrame:self.window.bounds];
advertiseView.filePath = filePath;
advertiseView.dismissHandler = ^(BOOL shouldJump) {
@kStrongify(self)
if (!shouldJump || info == nil) {
return;
}
[self performSelectorOnMainThread:@selector(advertiseJumpHandleWithInfo:) withObject:info waitUntilDone:NO];
};
[advertiseView show];
}
}
}
/// 广
- (void)advertiseJumpHandleWithInfo:(AdvertiseModel *)info {
if (UIApplication.sharedApplication.keyWindow != self.window) {
//
return;
}
switch (info.type) {
case SplashInfoSkipTypeRoom: {
if (![[XPAdImageTool shareImageTool] isImLogin]) {
return; //
}
//
if (info.link.length > 0) {
[XPRoomViewController openRoom:info.link viewController:[XCCurrentVCStackManager shareManager].getCurrentVC];
}
}
break;
case SplashInfoSkipTypeWeb: {
// H5
if (info.link.length > 0) {
XPWebViewController *webView = [[XPWebViewController alloc]init];
webView.url = info.link;
[[[XCCurrentVCStackManager shareManager]currentNavigationController] pushViewController:webView animated:YES];
}
}
break;
default:
break;
}
}
2021-09-13 18:56:16 +08:00
@end