From e32277d74f1a8bc70a975e986d75799863c4ecec Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Wed, 18 Apr 2018 15:05:07 +0800 Subject: [PATCH] 添加V3.6.7 --- frameworks/Chartboost.framework/Versions/A/Headers/CBAnalytics.h | 43 ++++++++++++++++++++++--------------------- 1 files changed, 22 insertions(+), 21 deletions(-) diff --git a/frameworks/Chartboost.framework/Versions/A/Headers/CBAnalytics.h b/frameworks/Chartboost.framework/Versions/A/Headers/CBAnalytics.h index c47dbf8..e37459b 100644 --- a/frameworks/Chartboost.framework/Versions/A/Headers/CBAnalytics.h +++ b/frameworks/Chartboost.framework/Versions/A/Headers/CBAnalytics.h @@ -1,18 +1,19 @@ -/* - * CBAnalytics.h - * Chartboost - * 6.6.3 - * - * Copyright 2011 Chartboost. All rights reserved. - */ +// +// CBAnalytics.h +// Chartboost +// +// Copyright 2018 Chartboost. All rights reserved. +// +// +#import <Foundation/Foundation.h> #import <StoreKit/StoreKit.h> /*! @typedef NS_ENUM (NSUInteger, CBLevelType) @abstract - Used with trackLevelInfo calls to describe meta information about the level value as it + Used with trackLevelInfo calls to describe meta information about the level value as it pertains to the game's context. */ typedef NS_ENUM(NSUInteger, CBLevelType) { @@ -42,7 +43,7 @@ /*! @abstract Track an In App Purchase Event. - + @param receipt The transaction receipt used to validate the purchase. @param productTitle The localized title of the product. @@ -54,10 +55,10 @@ @param productCurrency The localized currency of the product. @param productIdentifier The IOS identifier for the product. - + @discussion Tracks In App Purchases for later use with user segmentation and targeting. -*/ + */ + (void)trackInAppPurchaseEvent:(NSData *)receipt productTitle:(NSString *)productTitle productDescription:(NSString *)productDescription @@ -68,7 +69,7 @@ /*! @abstract Track an In App Purchase Event. - + @param receiptString The base64 encoded receipt string used to validate the purchase. @param productTitle The localized title of the product. @@ -80,16 +81,16 @@ @param productCurrency The localized currency of the product. @param productIdentifier The IOS identifier for the product. - + @discussion Tracks In App Purchases for later use with user segmentation and targeting. -*/ + */ + (void)trackInAppPurchaseEventWithString:(NSString *)receiptString - productTitle:(NSString *)productTitle - productDescription:(NSString *)productDescription - productPrice:(NSDecimalNumber *)productPrice - productCurrency:(NSString *)productCurrency - productIdentifier:(NSString *)productIdentifier; + productTitle:(NSString *)productTitle + productDescription:(NSString *)productDescription + productPrice:(NSDecimalNumber *)productPrice + productCurrency:(NSString *)productCurrency + productIdentifier:(NSString *)productIdentifier; /*! @abstract Track an In App Purchase Event. @@ -107,7 +108,7 @@ /*! @abstract - Track level information about your user. Can be sequential levelling, non-sequential levelling, character level, or other. + Track level information about your user. Can be sequential levelling, non-sequential levelling, character level, or other. @param eventLabel A string that disambiguates the eventField. Use it to provides a human readable string to answer the question - What are we tracking ? @@ -130,7 +131,7 @@ /*! @abstract - Track level information about your user. Can be sequential levelling, non-sequential levelling, character level, or other. + Track level information about your user. Can be sequential levelling, non-sequential levelling, character level, or other. @param eventLabel A string that disambiguates the eventField. Use it to provides a human readable string to answer the question - What are we tracking ? -- Gitblit v1.8.0