QQ_XGVIPPush 1.0.1.0

QQ_XGVIPPush 1.0.1.0

tegdata 维护。



QQ_XGVIPPush 1.0.1.0

  • 作者
  • 腾讯 TEG

XGPush

信鸽官方 VIP 版本 CocoaPods Spec镜像

使用方法

在 Pods file 中添加

pod 'QQ_XGVIPPush'

版本 1.0.1.0

*[+]兼容 iOS13 上获取 Device Token 的方法

版本 1.0.0.10

*[+]优化启动时间 *[+]修复与 MTA SDK 的冲突

版本 1.0.0.9

*[+]修复点击消息统计的问题

版本 1.0.0.8

*[+]修复信鸽与 Firebase SDK 的推送冲突问题

版本 1.0.0.7

*[+]去除获取公有云配置服务器地址中对 Info.plist 文件名字的限制

版本 1.0.0.6

*[+]支持私有云部署服务器配置 *[*]修复内存泄露

私有化部署需要在 XGPushPrivate.h 中进行引用,并要求在 信鸽 SDK 启动之前调用接口 - (void)configureHost:(NSString *)host port:(NSInteger)port; 来设置服务器配置信息

代码示例:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
	// 配置私有云服务器地址
	[[XGPush defaultManager] configureHost:@"yourcompany.domain.com" port:8080];
	
    [[XGPush defaultManager] setEnableDebug:YES];
    [[XGPush defaultManager] startXGWithAppID:2200257934 appKey:@"IF7E9U92S3ZC" delegate:self];
    // 清除角标
    if ([XGPush defaultManager].xgApplicationBadgeNumber > 0) {
        [[XGPush defaultManager] setXgApplicationBadgeNumber:0];
    }
	[[XGPush defaultManager] reportXGNotificationInfo:launchOptions];
	return YES;
}

版本 1.0.0.5

*[+]支持公有云部署服务器配置

具体操作步骤:配置 Info.plist 文件,配置文件名必须是 Info.plist,且其中键值对和数据类型必须一致

参照: xg_vip_info

版本 1.0.0.4

*[*]修复内存泄露

版本 1.0.0.3

*[*] 获取路由重试机制 *[*]修复内存泄露

版本 1.0.0.2

  • 初始版本