Skip to content

Commit dc5cca3

Browse files
author
hengsheqian
committed
1.5.0.1
1 parent 113aced commit dc5cca3

File tree

4 files changed

+80
-0
lines changed

4 files changed

+80
-0
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 ReYunTracking
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Tracking/Tracking.h

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
//
2+
// Tracking.h
3+
// ReYun_Tracking
4+
//
5+
// Created by jesse on 2018/1/19.
6+
// Copyright © 2018年 yun. All rights reserved.
7+
//
8+
#define REYUN_TRACKING_VERSION @"1.5.0"
9+
#import <Foundation/Foundation.h>
10+
NS_ASSUME_NONNULL_BEGIN
11+
@interface Tracking : NSObject
12+
//开启打印日志 正式上线包请关掉
13+
+(void) setPrintLog :(BOOL)print;
14+
// 开启数据统计
15+
+ (void)initWithAppKey:(NSString *)appKey withChannelId:(NSString *)channelId;
16+
//注册成功后调用
17+
+ (void)setRegisterWithAccountID:(NSString *)account;
18+
//登陆成功后调用
19+
+ (void)setLoginWithAccountID:(NSString *)account;
20+
//生成订单
21+
+(void)setDD:(NSString *)ryTID hbType:(NSString*)hbType hbAmount:(float)hbAmount;
22+
// 支付完成,付费分析,记录玩家充值的金额(人民币单位是元)
23+
+(void)setRyzf:(NSString *)ryTID ryzfType:(NSString*)ryzfType hbType:(NSString*)hbType hbAmount:(float)hbAmount;
24+
//自定义事件
25+
+(void)setEvent:(NSString *)eventName;
26+
//获取设备信息
27+
+(NSString*)getDeviceId;
28+
@end
29+
NS_ASSUME_NONNULL_END

Tracking/libReYunTracking.a

11.2 MB
Binary file not shown.

TrackingSDK.podspec

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Pod::Spec.new do |s|
2+
3+
s.name = "TrackingSDK"
4+
s.version = "1.5.0.1"
5+
s.summary = "ReYun Tracking SDK"
6+
s.homepage = "https://www.reyun.com"
7+
8+
s.license = { :type => "MIT", :file => "LICENSE" }
9+
10+
s.author = { "feiyang" => "3196817369@qq.com" }
11+
12+
s.platform = :ios
13+
14+
s.platform = :ios, "9.0"
15+
16+
s.source = { :git => "https://github.com/reyun-ios/tracking.git", :tag => s.version }
17+
18+
s.source_files = 'Tracking/*.{h,a}'
19+
20+
s.ios.vendored_library = "Tracking/*.a"
21+
22+
s.static_framework = true
23+
24+
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/TrackingSDK/Tracking/**"' }
25+
26+
s.frameworks = 'SystemConfiguration','AdSupport','CoreTelephony','Security','CoreMotion',"iAd",'AVFoundation'
27+
28+
s.libraries = 'sqlite3','ReYunTracking',"z"
29+
30+
end

0 commit comments

Comments
 (0)