Commit 6e6b962fb1c2cfb97eebcd7fec09c86a2c126050

Authored by alexYang
1 parent 44e1460f10
Exists in master and in 1 other branch dev

SDK界面更新

Showing 23 changed files with 232 additions and 61 deletions Inline Diff

1 # Gump IOS SDK使用文档 1 # Gump IOS SDK使用文档
2 2
3 3
4 接入手册 4 接入手册
5 V 3.4.11 5 V 3.4.12
6 2017年12月29日 6 2017年1月12日
7 7
8 ## 概述 8 ## 概述
9 #### 本SDK提供gump账号,fb账号,vk账号,Google帐号四种账号登录,iap支付和第三方支付两种支付功能,其中gump账号登录和fb账号登录功能为必须接入,支付可根据需要选择性接入。 9 #### 本SDK提供gump账号,fb账号,vk账号,Google帐号四种账号登录,iap支付和第三方支付两种支付功能,其中gump账号登录和fb账号登录功能为必须接入,支付可根据需要选择性接入。
10 10
11 ## 接入步骤 11 ## 接入步骤
12 ### 1、添加Framework和资源文件 12 ### 1、添加Framework和资源文件
13 + 以下为必须添加的framework以及资源bundle: 13 + 以下为必须添加的framework以及资源bundle:
14 MobileCoreServices.framework、SystemConfiguration.framework、libz.dylib、CFNetwork.framework、GameSDK.framework、StoreKit.framework、GameSDKResources.bundle 14 MobileCoreServices.framework、SystemConfiguration.framework、libz.dylib、CFNetwork.framework、GameSDK.framework、StoreKit.framework、GameSDKResources.bundle
15 + 以下为可选,若接入vk登录则需要添加以下framework和bundle,其中VKSdk.framework和VKSDKResources.bundle请自行从vk.com下载,使用1.3版本 15 + 以下为可选,若接入vk登录则需要添加以下framework和bundle,其中VKSdk.framework和VKSDKResources.bundle请自行从vk.com下载,使用1.3版本
16 VKSdk.framework、VKBridge.framework、VKSDKResources.bundle 16 VKSdk.framework、VKBridge.framework、VKSDKResources.bundle
17 + 以下可选,若接入微信登陆则需要添加如下的framework: 17 + 以下可选,若接入微信登陆则需要添加如下的framework:
18 libsqlite3.0.dylib, libc++.dylib, Security.framework, CoreTelephony.framework, CFNetwork.framework 18 libsqlite3.0.dylib, libc++.dylib, Security.framework, CoreTelephony.framework, CFNetwork.framework
19 19
20 20
21 ### 2、引入头文件,设置build setting 21 ### 2、引入头文件,设置build setting
22 需要使用头文件有LetsGameAPI.h和VKBridge.h,其中VKBridge.h为接入vk时使用,不接入vk可忽略。 22 需要使用头文件有LetsGameAPI.h和VKBridge.h,其中VKBridge.h为接入vk时使用,不接入vk可忽略。
23 因sdk内使用了category,需要设置other linker flag为 -ObjC 23 因sdk内使用了category,需要设置other linker flag为 -ObjC
24 24
25 25
26 ### 3、增加必要配置 26 ### 3、增加必要配置
27 1)在application delegate中, 在application:openURL:sourceApplication:annotation:添加返回: 27 1)在application delegate中, 在application:openURL:sourceApplication:annotation:添加返回:
28 28
29 return [[LetsGameAPI instance] handleOpenURL:url sourceApplication:sourceApplication]; 29 return [[LetsGameAPI instance] handleOpenURL:url sourceApplication:sourceApplication];
30 30
31 31
32 2)配置URL-schema(vk专用,不接入vk可忽略) 32 2)配置URL-schema(vk专用,不接入vk可忽略)
33 Xcode 5: Open your application settings then select the Info tab. In the URL Types section click the plus sign. Enter vk+APP_ID (e.g. vk1234567) to the Identifier and URL Schemes fields. 33 Xcode 5: Open your application settings then select the Info tab. In the URL Types section click the plus sign. Enter vk+APP_ID (e.g. vk1234567) to the Identifier and URL Schemes fields.
34 ![](images/vk1.jpg) 34 ![](images/vk1.jpg)
35 Xcode 4: Open your Info.plist then add a new row URL Types. Set the URL identifier to vk+APP_ID 35 Xcode 4: Open your Info.plist then add a new row URL Types. Set the URL identifier to vk+APP_ID
36 ![](images/vk2.jpg) 36 ![](images/vk2.jpg)
37 3)配置UIL-schema(weChat专用,不接入可以忽略) 37 3)配置UIL-schema(weChat专用,不接入可以忽略)
38 选中“TARGETS”一栏,在“info”标签栏的“URL type“添加“URL scheme”为你所注册的应用程序id 38 选中“TARGETS”一栏,在“info”标签栏的“URL type“添加“URL scheme”为你所注册的应用程序id
39 选中“TARGETS”一栏,在“info”标签栏的“LSApplicationQueriesSchemes“添加weixin和wechat 39 选中“TARGETS”一栏,在“info”标签栏的“LSApplicationQueriesSchemes“添加weixin和wechat
40 40
41 ### 4、在工程里添加SDK登录代码 41 ### 4、在工程里添加SDK登录代码
42 42
43 [LetsGameAPI instance].appId = @"100"; // 设置appId 43 [LetsGameAPI instance].appId = @"100"; // 设置appId
44 [LetsGameAPI instance].appKey = @"100"; // 设置appKey 44 [LetsGameAPI instance].appKey = @"100"; // 设置appKey
45 45
46 //启用vk的代码,需要填入vk appId,若不接入vk,可以忽略 46 //启用vk的代码,需要填入vk appId,若不接入vk,可以忽略
47 //VKBridge *vkBridge = [[VKBridge alloc] initWithVKAppId:@"5029792"]; 47 //VKBridge *vkBridge = [[VKBridge alloc] initWithVKAppId:@"5029792"];
48 //[LetsGameAPI instance].vkBridge = vkBridge; 48 //[LetsGameAPI instance].vkBridge = vkBridge;
49 49
50 //隐藏fb登录 50 //隐藏fb登录
51 [LetsGameAPI disableFB:YES]; 51 [LetsGameAPI disableFB:YES];
52 //隐藏Google登录 52 //隐藏Google登录
53 [LetsGameAPI disableGoogle:YES]; 53 [LetsGameAPI disableGoogle:YES];
54 //隐藏gumptech的logo 54 //隐藏gumptech的logo
55 [LetsGameAPI hiddenLogo:YES]; 55 [LetsGameAPI hiddenLogo:YES];
56 56
57 [[LetsGameAPI instance] showLoginView]; // 弹出登录页面 57 [[LetsGameAPI instance] showLoginView]; // 弹出登录页面
58 58
59 // 登录成功回调 59 // 登录成功回调
60 [LetsGameAPI instance].succBlock = ^(NSString *userId, NSString *sessionKey, LSGAccountType type) { 60 [LetsGameAPI instance].succBlock = ^(NSString *userId, NSString *sessionKey, LSGAccountType type) {
61 NSLog(@"%@", [NSString stringWithFormat:@"login succ: userId = %@, sessionKey = %@, accountType = %d", userId, sessionKey, type]); 61 NSLog(@"%@", [NSString stringWithFormat:@"login succ: userId = %@, sessionKey = %@, accountType = %d", userId, sessionKey, type]);
62 }; 62 };
63 63
64 // 登录失败回调 64 // 登录失败回调
65 [LetsGameAPI instance].dismissBlock = ^() { 65 [LetsGameAPI instance].dismissBlock = ^() {
66 NSLog(@"dismiss without login"); 66 NSLog(@"dismiss without login");
67 }; 67 };
68 68
69 ### 5、登录注销 69 ### 5、登录注销
70 注销接口只要设置过appId和appKey之后就不需要设置了,注销完成之后会回到登录界面。FB登录回到登录页面,Gump登录或者游客登录回到登录框。 70 注销接口只要设置过appId和appKey之后就不需要设置了,注销完成之后会回到登录界面。FB登录回到登录页面,Gump登录或者游客登录回到登录框。
71 71
72 [LetsGameAPI instance].appId = @"100";//设置appId 72 [LetsGameAPI instance].appId = @"100";//设置appId
73 [LetsGameAPI instance].appKey = @"100";//设置appkey 73 [LetsGameAPI instance].appKey = @"100";//设置appkey
74 [[LetsGameAPI instance] logout]; //注销 74 [[LetsGameAPI instance] logout]; //注销
75 75
76 76
77 ### 6、第三方支付 77 ### 6、第三方支付
78 [LetsGameAPI instance].appId = @"10022"; 78 [LetsGameAPI instance].appId = @"10022";
79 [LetsGameAPI instance].appKey = @"f899139df5e1059396431415e770c6dd"; 79 [LetsGameAPI instance].appKey = @"f899139df5e1059396431415e770c6dd";
80 NSMutableDictionary *payInfo = [NSMutableDictionary dictionary]; 80 NSMutableDictionary *payInfo = [NSMutableDictionary dictionary];
81 [payInfo setValue:@"5001" forKey:@"serverId"];//服务器id,必传参数 81 [payInfo setValue:@"5001" forKey:@"serverId"];//服务器id,必传参数
82 [payInfo setValue:@"10010" forKey:@"roleId"];//用户角色id 82 [payInfo setValue:@"10010" forKey:@"roleId"];//用户角色id
83 [payInfo setValue:@"1000" forKey:@"channelId"];//渠道id 83 [payInfo setValue:@"1000" forKey:@"channelId"];//渠道id
84 [payInfo setValue:@"10" forKey:@"amount"];//金额 84 [payInfo setValue:@"10" forKey:@"amount"];//金额
85 [payInfo setValue:@"ios demo" forKey:@"extraInfo"];//外部订单信息 85 [payInfo setValue:@"ios demo" forKey:@"extraInfo"];//外部订单信息
86 [payInfo setValue:@"元宝" forKey:@"product"];//物品信息 86 [payInfo setValue:@"元宝" forKey:@"product"];//物品信息
87 [payInfo setValue:self.sessionKey forKey:@"sessionKey"];//登录成功的sessionKey 87 [payInfo setValue:self.sessionKey forKey:@"sessionKey"];//登录成功的sessionKey
88 [[LetsGameAPI instance] pay:payInfo handleCallBack:^{ 88 [[LetsGameAPI instance] pay:payInfo handleCallBack:^{
89 //第三方支付完成时的回调(包括支付成功和支付失败,除了支付过程中取消的),取消的不会有回调 89 //第三方支付完成时的回调(包括支付成功和支付失败,除了支付过程中取消的),取消的不会有回调
90 NSLog(@"第三方支付完成"); 90 NSLog(@"第三方支付完成");
91 }]]; 91 }]];
92 92
93 ### 7、IAP支付 93 ### 7、IAP支付
94 若要使用apple IAP支付,需要在AppDelegate的application: didFinishLaunchingWithOptions:方法内注册iap observer,使用如下方法 94 若要使用apple IAP支付,需要在AppDelegate的application: didFinishLaunchingWithOptions:方法内注册iap observer,使用如下方法
95 95
96 [[LetsGameAPI instance] registeIapObserver]; 96 [[LetsGameAPI instance] registeIapObserver];
97 具体调用iap支付的方法如下: 97 具体调用iap支付的方法如下:
98 98
99 [LetsGameAPI instance].appId = @"10022"; 99 [LetsGameAPI instance].appId = @"10022";
100 [LetsGameAPI instance].appKey = @"93a27b0bd99bac3e68a440b48aa421ab"; 100 [LetsGameAPI instance].appKey = @"93a27b0bd99bac3e68a440b48aa421ab";
101 NSMutableDictionary *payInfo = [NSMutableDictionary dictionary]; 101 NSMutableDictionary *payInfo = [NSMutableDictionary dictionary];
102 [payInfo setValue:@"5001" forKey:@"serverId"];//当前用户所在的服务器Id 102 [payInfo setValue:@"5001" forKey:@"serverId"];//当前用户所在的服务器Id
103 [payInfo setValue:@"10010" forKey:@"roleId"];//当前用户的角色id 103 [payInfo setValue:@"10010" forKey:@"roleId"];//当前用户的角色id
104 [payInfo setValue:@"1000" forKey:@"channelId"];//渠道id,用于统计 104 [payInfo setValue:@"1000" forKey:@"channelId"];//渠道id,用于统计
105 [payInfo setValue:@"10" forKey:@"amount"];//对应支付项的支付金额,实际支付金额以itunes配置为准 105 [payInfo setValue:@"10" forKey:@"amount"];//对应支付项的支付金额,实际支付金额以itunes配置为准
106 [payInfo setValue:@"ios demo" forKey:@"extraInfo"];//扩展信息,可以游戏自定义,建议传自有订单号 106 [payInfo setValue:@"ios demo" forKey:@"extraInfo"];//扩展信息,可以游戏自定义,建议传自有订单号
107 [payInfo setValue:@"test.product.1" forKey:@"product"];//itunes 后台配置的对应支付项的productId 107 [payInfo setValue:@"test.product.1" forKey:@"product"];//itunes 后台配置的对应支付项的productId
108 [[LetsGameAPI instance] iap:payInfo forUser:@"" succCallback:^(NSString *orderId) { 108 [[LetsGameAPI instance] iap:payInfo forUser:@"" succCallback:^(NSString *orderId) {
109 //此处的回调表明支付已经完成,但此时支付不一定成功,需要服务端验证支付结果 109 //此处的回调表明支付已经完成,但此时支付不一定成功,需要服务端验证支付结果
110 //orderId为gump生成的订单号,此订单号可以在gump server查询此笔支付是否成功 110 //orderId为gump生成的订单号,此订单号可以在gump server查询此笔支付是否成功
111 NSLog(@"IAP completed orderId of Gumptech:%@",orderId); 111 NSLog(@"IAP completed orderId of Gumptech:%@",orderId);
112 } failCallback:^(NSString *orderId) { 112 } failCallback:^(NSString *orderId) {
113 //支付失败 113 //支付失败
114 NSLog(@"IAP file orderId of Gumptech:%@",orderId); 114 NSLog(@"IAP file orderId of Gumptech:%@",orderId);
115 }]; 115 }];
116 ### 8、token的获取 116 ### 8、token的获取
117 FB登录之后会产生token并自动登录,需要如果需要token的话,需要自己调用接口获取。 117 FB登录之后会产生token并自动登录,需要如果需要token的话,需要自己调用接口获取。
118 118
119 //tokenString:token字符串 119 //tokenString:token字符串
120 //refreshTime:refreshTime token最后刷新的时间,即获取的token的时间 120 //refreshTime:refreshTime token最后刷新的时间,即获取的token的时间
121 //expirationTime:expirationTime token最后的有效时间 121 //expirationTime:expirationTime token最后的有效时间
122 [[LetsGameAPI instance] obtainAccessTokenSuccess:^(NSString *tokenString, NSString *refreshTime, NSString *expirationTime) { 122 [[LetsGameAPI instance] obtainAccessTokenSuccess:^(NSString *tokenString, NSString *refreshTime, NSString *expirationTime) {
123 NSLog(@"tokenString %@, refreshTime %@, expirationTime %@", tokenString, refreshTime, expirationTime); 123 NSLog(@"tokenString %@, refreshTime %@, expirationTime %@", tokenString, refreshTime, expirationTime);
124 } failure:^(NSString *errorString) { 124 } failure:^(NSString *errorString) {
125 NSLog(@"get token faile"); 125 NSLog(@"get token faile");
126 }]; 126 }];
127 127
128 128
129 ### 9、第三方支付版本 129 ### 9、第三方支付版本
130 第三方支付,分成两个版本:没有gump币和有gump币,不设置时默认为带gump币版本,如果使用不带gump币的版本如下设置: 130 第三方支付,分成两个版本:没有gump币和有gump币,不设置时默认为带gump币版本,如果使用不带gump币的版本如下设置:
131 131
132 需要在 application:didFinishLaunchingWithOptions方法中添加: 132 需要在 application:didFinishLaunchingWithOptions方法中添加:
133 133
134 [[LetsGameAPI instance] decideWebPayVersion:1] 134 [[LetsGameAPI instance] decideWebPayVersion:1]
135 135
136 136
137 ### 10、关于侵权还是侵权的接口显示 137 ### 10、关于侵权还是侵权的接口显示
138 运营在后台配置此包名和版本在什么时候显示侵权内容还是不侵权内容,此接口调用需要在游戏才开始加载的时候调用,返回值是YES的时候显示侵权内容,在NO的时候显示不侵权内容。 138 运营在后台配置此包名和版本在什么时候显示侵权内容还是不侵权内容,此接口调用需要在游戏才开始加载的时候调用,返回值是YES的时候显示侵权内容,在NO的时候显示不侵权内容。
139 139
140 注意:关于运营配置的游戏的版本号,我们默认取的是Bulid版本号的值,请注意。 140 注意:关于运营配置的游戏的版本号,我们默认取的是Bulid版本号的值,请注意。
141 141
142 [[LetsGameAPI instance] gameObtainSafeSetInfoWithAppId:@"10056" ChannelId:@"1000" handleCallBack:^(BOOL resultStatus) { 142 [[LetsGameAPI instance] gameObtainSafeSetInfoWithAppId:@"10056" ChannelId:@"1000" handleCallBack:^(BOOL resultStatus) {
143 if (resultStatus) { 143 if (resultStatus) {
144 NSLog(@"YES 侵权"); 144 NSLog(@"YES 侵权");
145 }else{ 145 }else{
146 NSLog(@"NO 不侵权"); 146 NSLog(@"NO 不侵权");
147 } 147 }
148 }]; 148 }];
149 ### 11、横竖屏设置
149 150
150 ### 11、微信登陆 151 首先设置SDK默认是横屏,在General->Deployment Info->Device Orientain下,只选择Landscape Left 和 Landscape Right,SDK的界面默认是横屏。
152 其次如果想使用竖屏的模式,需要在General->Deployment Info->Device Orientain下,只选择Portrait模式,并且需要在AppDelegate中的方法:
153 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;靠前的位置添加代码设置:
154
155 [LetsGameAPI DeviceOrientationIsHorizontal:NO];
156
157
158
159
160
161 ### 12、微信登陆
151 162
152 首先在- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;方法中向微信注册应用 163 首先在- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;方法中向微信注册应用
153 //微信登陆 164 //微信登陆
154 [[LetsGameAPI instance] registerAppWeChatWithAppId:@"appId" appKey:@"appKey" Success:^{ 165 [[LetsGameAPI instance] registerAppWeChatWithAppId:@"appId" appKey:@"appKey" Success:^{
155 NSLog(@"注册成功"); 166 NSLog(@"注册成功");
156 } failure:^{ 167 } failure:^{
157 NSLog(@"注册失败"); 168 NSLog(@"注册失败");
158 }]; 169 }];
159 170
ios/GameSDK.framework/Versions/A/GameSDK
No preview for this file type
ios/GameSDK.framework/Versions/A/Headers/LetsGameAPI.h
1 1
2 #import <Foundation/Foundation.h> 2 #import <Foundation/Foundation.h>
3 #import "LSGAccount.h" 3 #import "LSGAccount.h"
4 #import "VKBridgeProtocol.h" 4 #import "VKBridgeProtocol.h"
5 5
6 6
7 typedef void (^LSGLoginSuccBlock)(NSString *userId, NSString *sessionKey, LSGAccountType type); 7 typedef void (^LSGLoginSuccBlock)(NSString *userId, NSString *sessionKey, LSGAccountType type);
8 typedef void (^LSGDismissBlock)(void); 8 typedef void (^LSGDismissBlock)(void);
9 9
10 static BOOL isDisableFB = NO; 10 static BOOL isDisableFB = NO;
11 11
12 static BOOL isEnableVK = NO; 12 static BOOL isEnableVK = NO;
13 13
14 static BOOL isDisableLine = NO; 14 static BOOL isDisableLine = NO;
15 15
16 static BOOL isDisableWeChat = NO; 16 static BOOL isDisableWeChat = NO;
17 17
18 static BOOL isDisableGoogle = NO; 18 static BOOL isDisableGoogle = NO;
19 19
20 static BOOL hiddenLogo = NO; 20 static BOOL hiddenLogo = NO;
21 21
22 static NSString *version = @"3.4.11"; 22 //默认横屏
23 static BOOL DeviceOrientationIsHorizontal = YES;
24
25 static NSString *version = @"3.4.12";
23 26
24 @interface LetsGameAPI : NSObject<UIApplicationDelegate> 27 @interface LetsGameAPI : NSObject<UIApplicationDelegate>
25 28
26 @property (nonatomic, strong) NSString *appId; 29 @property (nonatomic, strong) NSString *appId;
27 @property (nonatomic, strong) NSString *appKey; 30 @property (nonatomic, strong) NSString *appKey;
28 @property (nonatomic, copy) LSGLoginSuccBlock succBlock; 31 @property (nonatomic, copy) LSGLoginSuccBlock succBlock;
29 @property (nonatomic, copy) LSGDismissBlock dismissBlock; 32 @property (nonatomic, copy) LSGDismissBlock dismissBlock;
30 @property (nonatomic, assign) int isDebug; 33 @property (nonatomic, assign) int isDebug;
31 @property (nonatomic, assign) int decideWebPay; 34 @property (nonatomic, assign) int decideWebPay;
32 @property (nonatomic,retain) id<VKBridgeProtocol> vkBridge; 35 @property (nonatomic,retain) id<VKBridgeProtocol> vkBridge;
33 //@property(nonatomic,strong) NSString *version; 36 //@property(nonatomic,strong) NSString *version;
34 37
35 + (instancetype)instance; 38 + (instancetype)instance;
36 39
37 -(NSString*)version; 40 -(NSString*)version;
38 41
39 - (void)showLoginView; 42 - (void)showLoginView;
40 - (void)showLoginViewInView:(UIView *)view; 43 - (void)showLoginViewInView:(UIView *)view;
41 44
42 +(void)disableFB:(BOOL)isDisable; 45 +(void)disableFB:(BOOL)isDisable;
43 +(void)disableGoogle:(BOOL)isDisable; 46 +(void)disableGoogle:(BOOL)isDisable;
44 +(void)disableWeChat:(BOOL)isDisable; 47 +(void)disableWeChat:(BOOL)isDisable;
45 +(void)disableLine:(BOOL)isDissable; 48 +(void)disableLine:(BOOL)isDissable;
46 +(BOOL)isFBDisable; 49 +(BOOL)isFBDisable;
47 +(BOOL)isVKEnable; 50 +(BOOL)isVKEnable;
48 +(BOOL)isWeChatDisable; 51 +(BOOL)isWeChatDisable;
49 +(BOOL)isGoogleDisable; 52 +(BOOL)isGoogleDisable;
50 +(BOOL)isLineDisable; 53 +(BOOL)isLineDisable;
51 +(void)hiddenLogo:(BOOL)isHidden; 54 +(void)hiddenLogo:(BOOL)isHidden;
52 +(BOOL)isHiddenLogo; 55 +(BOOL)isHiddenLogo;
56 +(void)DeviceOrientationIsHorizontal:(BOOL)isDisable;
57 +(BOOL)DeviceOrientationIsHorizontal;
53 58
54 - (void)logout; 59 - (void)logout;
55 60
56 - (void)hide; 61 - (void)hide;
57 //是否安装微信 62 //是否安装微信
58 -(BOOL)isWeChatInstall; 63 -(BOOL)isWeChatInstall;
59 //向微信注册应用 64 //向微信注册应用
60 -(void)registerAppWeChatWithAppId:(NSString *)appId 65 -(void)registerAppWeChatWithAppId:(NSString *)appId
61 appKey:(NSString *)appKey 66 appKey:(NSString *)appKey
62 Success:(void (^)())success 67 Success:(void (^)())success
63 failure:(void (^)())failure; 68 failure:(void (^)())failure;
64 69
65 - (BOOL)handleOpenURL:(NSURL *)url 70 - (BOOL)handleOpenURL:(NSURL *)url
66 sourceApplication:(NSString *)sourceApplication; 71 sourceApplication:(NSString *)sourceApplication;
67 72
68 -(void)pay:(NSDictionary*) payInfo handleCallBack:(void (^)()) payAccomplistCallback; 73 -(void)pay:(NSDictionary*) payInfo handleCallBack:(void (^)()) payAccomplistCallback;
69 74
70 //-(void)iap:(NSDictionary*) payInfo forUser:(NSString*) uid handleCallback:(void (^)(NSString* orderId)) callback; 75 //-(void)iap:(NSDictionary*) payInfo forUser:(NSString*) uid handleCallback:(void (^)(NSString* orderId)) callback;
71 76
72 -(void)iap:(NSDictionary*) payInfo forUser:(NSString*) uid succCallback:(void (^)(NSString* orderId)) succCallback failCallback:(void (^)(NSString* orderId)) failCallback; 77 -(void)iap:(NSDictionary*) payInfo forUser:(NSString*) uid succCallback:(void (^)(NSString* orderId)) succCallback failCallback:(void (^)(NSString* orderId)) failCallback;
73 78
74 -(void)registeIapObserver; 79 -(void)registeIapObserver;
75 80
76 -(void)decideIsDebug:(int)isDebug; 81 -(void)decideIsDebug:(int)isDebug;
77 82
78 -(void)decideWebPayVersion:(int)decideWebPay; 83 -(void)decideWebPayVersion:(int)decideWebPay;
79 84
80 -(void)obtainAccessTokenSuccess:(void (^)(NSString *tokenString, NSString *refreshTime, NSString *expirationTime))success 85 -(void)obtainAccessTokenSuccess:(void (^)(NSString *tokenString, NSString *refreshTime, NSString *expirationTime))success
81 failure:(void (^)(NSString *errorString))failure; 86 failure:(void (^)(NSString *errorString))failure;
82 87
83 //获取是否展示安全页面,YES展示侵权页面,NO展示非侵权页面 88 //获取是否展示安全页面,YES展示侵权页面,NO展示非侵权页面
84 -(void)gameObtainSafeSetInfoWithAppId:(NSString *)appId 89 -(void)gameObtainSafeSetInfoWithAppId:(NSString *)appId
85 ChannelId:(NSString *)channelId 90 ChannelId:(NSString *)channelId
86 handleCallBack:(void (^)(BOOL resultStatus))callBack; 91 handleCallBack:(void (^)(BOOL resultStatus))callBack;
87 @end 92 @end
88 93
No preview for this file type
ios/GameSDKDemo/GameSDKDemo.xcodeproj/project.pbxproj
1 // !$*UTF8*$! 1 // !$*UTF8*$!
2 { 2 {
3 archiveVersion = 1; 3 archiveVersion = 1;
4 classes = { 4 classes = {
5 }; 5 };
6 objectVersion = 46; 6 objectVersion = 46;
7 objects = { 7 objects = {
8 8
9 /* Begin PBXBuildFile section */ 9 /* Begin PBXBuildFile section */
10 3309D8531C312F5900534E33 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3309D8521C312F5900534E33 /* StoreKit.framework */; }; 10 3309D8531C312F5900534E33 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3309D8521C312F5900534E33 /* StoreKit.framework */; };
11 3309D8551C312F6500534E33 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3309D8541C312F6500534E33 /* QuartzCore.framework */; }; 11 3309D8551C312F6500534E33 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3309D8541C312F6500534E33 /* QuartzCore.framework */; };
12 3309D9791C438A5E00534E33 /* libz.1.2.5.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 3309D9781C438A5E00534E33 /* libz.1.2.5.tbd */; }; 12 3309D9791C438A5E00534E33 /* libz.1.2.5.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 3309D9781C438A5E00534E33 /* libz.1.2.5.tbd */; };
13 3309D97F1C4394C800534E33 /* VKSdk.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3309D97E1C4394C800534E33 /* VKSdk.framework */; }; 13 3309D97F1C4394C800534E33 /* VKSdk.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3309D97E1C4394C800534E33 /* VKSdk.framework */; };
14 331262371C50B56800B1B435 /* VKBridge.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 331262361C50B56800B1B435 /* VKBridge.framework */; }; 14 331262371C50B56800B1B435 /* VKBridge.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 331262361C50B56800B1B435 /* VKBridge.framework */; };
15 3CD53D9D1B81F37900E1B01A /* VKSdkResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 3CD53D9C1B81F37900E1B01A /* VKSdkResources.bundle */; }; 15 3CD53D9D1B81F37900E1B01A /* VKSdkResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 3CD53D9C1B81F37900E1B01A /* VKSdkResources.bundle */; };
16 7517F2111FFF437F000237ED /* GameSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7517F2101FFF437E000237ED /* GameSDK.framework */; };
16 752A5F421CDC826A00C36131 /* GameSDKResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 752A5F411CDC826A00C36131 /* GameSDKResources.bundle */; }; 17 752A5F421CDC826A00C36131 /* GameSDKResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 752A5F411CDC826A00C36131 /* GameSDKResources.bundle */; };
17 752A5F4A1CDC8B3200C36131 /* GameSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 752A5F491CDC8B3200C36131 /* GameSDK.framework */; };
18 75864D631FF35A22002C9012 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 75864D601FF35A22002C9012 /* libsqlite3.tbd */; }; 18 75864D631FF35A22002C9012 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 75864D601FF35A22002C9012 /* libsqlite3.tbd */; };
19 75864D651FF35A3A002C9012 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75864D641FF35A3A002C9012 /* CoreTelephony.framework */; }; 19 75864D651FF35A3A002C9012 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75864D641FF35A3A002C9012 /* CoreTelephony.framework */; };
20 75864D671FF35A48002C9012 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 75864D661FF35A48002C9012 /* libz.tbd */; }; 20 75864D671FF35A48002C9012 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 75864D661FF35A48002C9012 /* libz.tbd */; };
21 75864D691FF35A58002C9012 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 75864D681FF35A57002C9012 /* libc++.tbd */; }; 21 75864D691FF35A58002C9012 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 75864D681FF35A57002C9012 /* libc++.tbd */; };
22 9934F1B219303DC6005EF4AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9934F1B119303DC6005EF4AB /* Foundation.framework */; }; 22 9934F1B219303DC6005EF4AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9934F1B119303DC6005EF4AB /* Foundation.framework */; };
23 9934F1B619303DC6005EF4AB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9934F1B519303DC6005EF4AB /* UIKit.framework */; }; 23 9934F1B619303DC6005EF4AB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9934F1B519303DC6005EF4AB /* UIKit.framework */; };
24 9934F1BE19303DC6005EF4AB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9934F1BD19303DC6005EF4AB /* main.m */; }; 24 9934F1BE19303DC6005EF4AB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9934F1BD19303DC6005EF4AB /* main.m */; };
25 9934F1C219303DC6005EF4AB /* LSGAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9934F1C119303DC6005EF4AB /* LSGAppDelegate.m */; }; 25 9934F1C219303DC6005EF4AB /* LSGAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9934F1C119303DC6005EF4AB /* LSGAppDelegate.m */; };
26 9934F1C419303DC6005EF4AB /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9934F1C319303DC6005EF4AB /* Images.xcassets */; }; 26 9934F1C419303DC6005EF4AB /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9934F1C319303DC6005EF4AB /* Images.xcassets */; };
27 9934F23A19307153005EF4AB /* LSGMainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9934F23919307153005EF4AB /* LSGMainViewController.m */; }; 27 9934F23A19307153005EF4AB /* LSGMainViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9934F23919307153005EF4AB /* LSGMainViewController.m */; };
28 997523281930A42500F50D29 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 997523271930A42500F50D29 /* CFNetwork.framework */; }; 28 997523281930A42500F50D29 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 997523271930A42500F50D29 /* CFNetwork.framework */; };
29 997523321930A52600F50D29 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 997523311930A52600F50D29 /* MobileCoreServices.framework */; }; 29 997523321930A52600F50D29 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 997523311930A52600F50D29 /* MobileCoreServices.framework */; };
30 /* End PBXBuildFile section */ 30 /* End PBXBuildFile section */
31 31
32 /* Begin PBXContainerItemProxy section */ 32 /* Begin PBXContainerItemProxy section */
33 75864D6F1FF368D9002C9012 /* PBXContainerItemProxy */ = { 33 75864D6F1FF368D9002C9012 /* PBXContainerItemProxy */ = {
34 isa = PBXContainerItemProxy; 34 isa = PBXContainerItemProxy;
35 containerPortal = 75864D6A1FF368D9002C9012 /* GameSDK.xcodeproj */; 35 containerPortal = 75864D6A1FF368D9002C9012 /* GameSDK.xcodeproj */;
36 proxyType = 2; 36 proxyType = 2;
37 remoteGlobalIDString = 99626194192D9649004FF2E3; 37 remoteGlobalIDString = 99626194192D9649004FF2E3;
38 remoteInfo = GameSDK; 38 remoteInfo = GameSDK;
39 }; 39 };
40 /* End PBXContainerItemProxy section */ 40 /* End PBXContainerItemProxy section */
41 41
42 /* Begin PBXFileReference section */ 42 /* Begin PBXFileReference section */
43 27019DCA1A208B1500DA560D /* Path.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Path.xcconfig; sourceTree = "<group>"; }; 43 27019DCA1A208B1500DA560D /* Path.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Path.xcconfig; sourceTree = "<group>"; };
44 27019DCB1A208B1500DA560D /* Project.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Project.xcconfig; sourceTree = "<group>"; }; 44 27019DCB1A208B1500DA560D /* Project.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Project.xcconfig; sourceTree = "<group>"; };
45 3309D8521C312F5900534E33 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.1.sdk/System/Library/Frameworks/StoreKit.framework; sourceTree = "<absolute>"; }; 45 3309D8521C312F5900534E33 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.1.sdk/System/Library/Frameworks/StoreKit.framework; sourceTree = "<absolute>"; };
46 3309D8541C312F6500534E33 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.1.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = "<absolute>"; }; 46 3309D8541C312F6500534E33 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.1.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = "<absolute>"; };
47 3309D9781C438A5E00534E33 /* libz.1.2.5.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.1.2.5.tbd; path = usr/lib/libz.1.2.5.tbd; sourceTree = SDKROOT; }; 47 3309D9781C438A5E00534E33 /* libz.1.2.5.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.1.2.5.tbd; path = usr/lib/libz.1.2.5.tbd; sourceTree = SDKROOT; };
48 3309D97E1C4394C800534E33 /* VKSdk.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VKSdk.framework; path = letsgameDemo/VKSdk.framework; sourceTree = "<group>"; }; 48 3309D97E1C4394C800534E33 /* VKSdk.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VKSdk.framework; path = letsgameDemo/VKSdk.framework; sourceTree = "<group>"; };
49 331262361C50B56800B1B435 /* VKBridge.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VKBridge.framework; path = ../VKBridge.framework; sourceTree = "<group>"; }; 49 331262361C50B56800B1B435 /* VKBridge.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VKBridge.framework; path = ../VKBridge.framework; sourceTree = "<group>"; };
50 3CD53D9C1B81F37900E1B01A /* VKSdkResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = VKSdkResources.bundle; sourceTree = "<group>"; }; 50 3CD53D9C1B81F37900E1B01A /* VKSdkResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = VKSdkResources.bundle; sourceTree = "<group>"; };
51 7517F2101FFF437E000237ED /* GameSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameSDK.framework; path = ../GameSDK.framework; sourceTree = "<group>"; };
51 752A5F411CDC826A00C36131 /* GameSDKResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = GameSDKResources.bundle; path = ../../GameSDKResources.bundle; sourceTree = "<group>"; }; 52 752A5F411CDC826A00C36131 /* GameSDKResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = GameSDKResources.bundle; path = ../../GameSDKResources.bundle; sourceTree = "<group>"; };
52 752A5F491CDC8B3200C36131 /* GameSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameSDK.framework; path = ../GameSDK.framework; sourceTree = "<group>"; };
53 75864D601FF35A22002C9012 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; }; 53 75864D601FF35A22002C9012 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
54 75864D641FF35A3A002C9012 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; }; 54 75864D641FF35A3A002C9012 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
55 75864D661FF35A48002C9012 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; 55 75864D661FF35A48002C9012 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
56 75864D681FF35A57002C9012 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; }; 56 75864D681FF35A57002C9012 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
57 75864D6A1FF368D9002C9012 /* GameSDK.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = GameSDK.xcodeproj; path = ../../../iosgamesdk/GameSDK/GameSDK.xcodeproj; sourceTree = "<group>"; }; 57 75864D6A1FF368D9002C9012 /* GameSDK.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = GameSDK.xcodeproj; path = ../../../iosgamesdk/GameSDK/GameSDK.xcodeproj; sourceTree = "<group>"; };
58 9934F1AE19303DC6005EF4AB /* GameSDKDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GameSDKDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; 58 9934F1AE19303DC6005EF4AB /* GameSDKDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GameSDKDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
59 9934F1B119303DC6005EF4AB /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 59 9934F1B119303DC6005EF4AB /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
60 9934F1B319303DC6005EF4AB /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 60 9934F1B319303DC6005EF4AB /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
61 9934F1B519303DC6005EF4AB /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 61 9934F1B519303DC6005EF4AB /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
62 9934F1B919303DC6005EF4AB /* letsgameDemo-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "letsgameDemo-Info.plist"; sourceTree = "<group>"; }; 62 9934F1B919303DC6005EF4AB /* letsgameDemo-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "letsgameDemo-Info.plist"; sourceTree = "<group>"; };
63 9934F1BD19303DC6005EF4AB /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; }; 63 9934F1BD19303DC6005EF4AB /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
64 9934F1BF19303DC6005EF4AB /* GameSDKDemo-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "GameSDKDemo-Prefix.pch"; sourceTree = "<group>"; }; 64 9934F1BF19303DC6005EF4AB /* GameSDKDemo-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "GameSDKDemo-Prefix.pch"; sourceTree = "<group>"; };
65 9934F1C019303DC6005EF4AB /* LSGAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LSGAppDelegate.h; sourceTree = "<group>"; }; 65 9934F1C019303DC6005EF4AB /* LSGAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LSGAppDelegate.h; sourceTree = "<group>"; };
66 9934F1C119303DC6005EF4AB /* LSGAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LSGAppDelegate.m; sourceTree = "<group>"; }; 66 9934F1C119303DC6005EF4AB /* LSGAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LSGAppDelegate.m; sourceTree = "<group>"; };
67 9934F1C319303DC6005EF4AB /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; }; 67 9934F1C319303DC6005EF4AB /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
68 9934F23819307153005EF4AB /* LSGMainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LSGMainViewController.h; sourceTree = "<group>"; }; 68 9934F23819307153005EF4AB /* LSGMainViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LSGMainViewController.h; sourceTree = "<group>"; };
69 9934F23919307153005EF4AB /* LSGMainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LSGMainViewController.m; sourceTree = "<group>"; }; 69 9934F23919307153005EF4AB /* LSGMainViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LSGMainViewController.m; sourceTree = "<group>"; };
70 997523271930A42500F50D29 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; }; 70 997523271930A42500F50D29 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
71 997523311930A52600F50D29 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; }; 71 997523311930A52600F50D29 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = System/Library/Frameworks/MobileCoreServices.framework; sourceTree = SDKROOT; };
72 /* End PBXFileReference section */ 72 /* End PBXFileReference section */
73 73
74 /* Begin PBXFrameworksBuildPhase section */ 74 /* Begin PBXFrameworksBuildPhase section */
75 9934F1AB19303DC6005EF4AB /* Frameworks */ = { 75 9934F1AB19303DC6005EF4AB /* Frameworks */ = {
76 isa = PBXFrameworksBuildPhase; 76 isa = PBXFrameworksBuildPhase;
77 buildActionMask = 2147483647; 77 buildActionMask = 2147483647;
78 files = ( 78 files = (
79 75864D691FF35A58002C9012 /* libc++.tbd in Frameworks */, 79 75864D691FF35A58002C9012 /* libc++.tbd in Frameworks */,
80 75864D671FF35A48002C9012 /* libz.tbd in Frameworks */, 80 75864D671FF35A48002C9012 /* libz.tbd in Frameworks */,
81 75864D651FF35A3A002C9012 /* CoreTelephony.framework in Frameworks */, 81 75864D651FF35A3A002C9012 /* CoreTelephony.framework in Frameworks */,
82 7517F2111FFF437F000237ED /* GameSDK.framework in Frameworks */,
82 75864D631FF35A22002C9012 /* libsqlite3.tbd in Frameworks */, 83 75864D631FF35A22002C9012 /* libsqlite3.tbd in Frameworks */,
83 331262371C50B56800B1B435 /* VKBridge.framework in Frameworks */, 84 331262371C50B56800B1B435 /* VKBridge.framework in Frameworks */,
84 3309D9791C438A5E00534E33 /* libz.1.2.5.tbd in Frameworks */, 85 3309D9791C438A5E00534E33 /* libz.1.2.5.tbd in Frameworks */,
85 3309D8551C312F6500534E33 /* QuartzCore.framework in Frameworks */, 86 3309D8551C312F6500534E33 /* QuartzCore.framework in Frameworks */,
86 3309D8531C312F5900534E33 /* StoreKit.framework in Frameworks */, 87 3309D8531C312F5900534E33 /* StoreKit.framework in Frameworks */,
87 752A5F4A1CDC8B3200C36131 /* GameSDK.framework in Frameworks */,
88 997523321930A52600F50D29 /* MobileCoreServices.framework in Frameworks */, 88 997523321930A52600F50D29 /* MobileCoreServices.framework in Frameworks */,
89 3309D97F1C4394C800534E33 /* VKSdk.framework in Frameworks */, 89 3309D97F1C4394C800534E33 /* VKSdk.framework in Frameworks */,
90 997523281930A42500F50D29 /* CFNetwork.framework in Frameworks */, 90 997523281930A42500F50D29 /* CFNetwork.framework in Frameworks */,
91 9934F1B619303DC6005EF4AB /* UIKit.framework in Frameworks */, 91 9934F1B619303DC6005EF4AB /* UIKit.framework in Frameworks */,
92 9934F1B219303DC6005EF4AB /* Foundation.framework in Frameworks */, 92 9934F1B219303DC6005EF4AB /* Foundation.framework in Frameworks */,
93 ); 93 );
94 runOnlyForDeploymentPostprocessing = 0; 94 runOnlyForDeploymentPostprocessing = 0;
95 }; 95 };
96 /* End PBXFrameworksBuildPhase section */ 96 /* End PBXFrameworksBuildPhase section */
97 97
98 /* Begin PBXGroup section */ 98 /* Begin PBXGroup section */
99 27019DC91A208B1500DA560D /* Configuration */ = { 99 27019DC91A208B1500DA560D /* Configuration */ = {
100 isa = PBXGroup; 100 isa = PBXGroup;
101 children = ( 101 children = (
102 27019DCA1A208B1500DA560D /* Path.xcconfig */, 102 27019DCA1A208B1500DA560D /* Path.xcconfig */,
103 27019DCB1A208B1500DA560D /* Project.xcconfig */, 103 27019DCB1A208B1500DA560D /* Project.xcconfig */,
104 ); 104 );
105 path = Configuration; 105 path = Configuration;
106 sourceTree = "<group>"; 106 sourceTree = "<group>";
107 }; 107 };
108 27019DCE1A208B2300DA560D /* Dependencies */ = { 108 27019DCE1A208B2300DA560D /* Dependencies */ = {
109 isa = PBXGroup; 109 isa = PBXGroup;
110 children = ( 110 children = (
111 75864D6A1FF368D9002C9012 /* GameSDK.xcodeproj */, 111 75864D6A1FF368D9002C9012 /* GameSDK.xcodeproj */,
112 ); 112 );
113 name = Dependencies; 113 name = Dependencies;
114 sourceTree = "<group>"; 114 sourceTree = "<group>";
115 }; 115 };
116 75864D6B1FF368D9002C9012 /* Products */ = { 116 75864D6B1FF368D9002C9012 /* Products */ = {
117 isa = PBXGroup; 117 isa = PBXGroup;
118 children = ( 118 children = (
119 75864D701FF368D9002C9012 /* libGameSDK.a */, 119 75864D701FF368D9002C9012 /* libGameSDK.a */,
120 ); 120 );
121 name = Products; 121 name = Products;
122 sourceTree = "<group>"; 122 sourceTree = "<group>";
123 }; 123 };
124 9934F1A519303DC6005EF4AB = { 124 9934F1A519303DC6005EF4AB = {
125 isa = PBXGroup; 125 isa = PBXGroup;
126 children = ( 126 children = (
127 27019DC91A208B1500DA560D /* Configuration */, 127 27019DC91A208B1500DA560D /* Configuration */,
128 27019DCE1A208B2300DA560D /* Dependencies */, 128 27019DCE1A208B2300DA560D /* Dependencies */,
129 9934F1B719303DC6005EF4AB /* letsgameDemo */, 129 9934F1B719303DC6005EF4AB /* letsgameDemo */,
130 9934F1B019303DC6005EF4AB /* Frameworks */, 130 9934F1B019303DC6005EF4AB /* Frameworks */,
131 9934F1AF19303DC6005EF4AB /* Products */, 131 9934F1AF19303DC6005EF4AB /* Products */,
132 ); 132 );
133 sourceTree = "<group>"; 133 sourceTree = "<group>";
134 }; 134 };
135 9934F1AF19303DC6005EF4AB /* Products */ = { 135 9934F1AF19303DC6005EF4AB /* Products */ = {
136 isa = PBXGroup; 136 isa = PBXGroup;
137 children = ( 137 children = (
138 9934F1AE19303DC6005EF4AB /* GameSDKDemo.app */, 138 9934F1AE19303DC6005EF4AB /* GameSDKDemo.app */,
139 ); 139 );
140 name = Products; 140 name = Products;
141 sourceTree = "<group>"; 141 sourceTree = "<group>";
142 }; 142 };
143 9934F1B019303DC6005EF4AB /* Frameworks */ = { 143 9934F1B019303DC6005EF4AB /* Frameworks */ = {
144 isa = PBXGroup; 144 isa = PBXGroup;
145 children = ( 145 children = (
146 7517F2101FFF437E000237ED /* GameSDK.framework */,
146 75864D681FF35A57002C9012 /* libc++.tbd */, 147 75864D681FF35A57002C9012 /* libc++.tbd */,
147 75864D661FF35A48002C9012 /* libz.tbd */, 148 75864D661FF35A48002C9012 /* libz.tbd */,
148 75864D641FF35A3A002C9012 /* CoreTelephony.framework */, 149 75864D641FF35A3A002C9012 /* CoreTelephony.framework */,
149 75864D601FF35A22002C9012 /* libsqlite3.tbd */, 150 75864D601FF35A22002C9012 /* libsqlite3.tbd */,
150 752A5F491CDC8B3200C36131 /* GameSDK.framework */,
151 331262361C50B56800B1B435 /* VKBridge.framework */, 151 331262361C50B56800B1B435 /* VKBridge.framework */,
152 3309D97E1C4394C800534E33 /* VKSdk.framework */, 152 3309D97E1C4394C800534E33 /* VKSdk.framework */,
153 3309D9781C438A5E00534E33 /* libz.1.2.5.tbd */, 153 3309D9781C438A5E00534E33 /* libz.1.2.5.tbd */,
154 3309D8541C312F6500534E33 /* QuartzCore.framework */, 154 3309D8541C312F6500534E33 /* QuartzCore.framework */,
155 3309D8521C312F5900534E33 /* StoreKit.framework */, 155 3309D8521C312F5900534E33 /* StoreKit.framework */,
156 997523311930A52600F50D29 /* MobileCoreServices.framework */, 156 997523311930A52600F50D29 /* MobileCoreServices.framework */,
157 997523271930A42500F50D29 /* CFNetwork.framework */, 157 997523271930A42500F50D29 /* CFNetwork.framework */,
158 9934F1B119303DC6005EF4AB /* Foundation.framework */, 158 9934F1B119303DC6005EF4AB /* Foundation.framework */,
159 9934F1B319303DC6005EF4AB /* CoreGraphics.framework */, 159 9934F1B319303DC6005EF4AB /* CoreGraphics.framework */,
160 9934F1B519303DC6005EF4AB /* UIKit.framework */, 160 9934F1B519303DC6005EF4AB /* UIKit.framework */,
161 ); 161 );
162 name = Frameworks; 162 name = Frameworks;
163 sourceTree = "<group>"; 163 sourceTree = "<group>";
164 }; 164 };
165 9934F1B719303DC6005EF4AB /* letsgameDemo */ = { 165 9934F1B719303DC6005EF4AB /* letsgameDemo */ = {
166 isa = PBXGroup; 166 isa = PBXGroup;
167 children = ( 167 children = (
168 752A5F411CDC826A00C36131 /* GameSDKResources.bundle */, 168 752A5F411CDC826A00C36131 /* GameSDKResources.bundle */,
169 9934F1C319303DC6005EF4AB /* Images.xcassets */, 169 9934F1C319303DC6005EF4AB /* Images.xcassets */,
170 9934F1C019303DC6005EF4AB /* LSGAppDelegate.h */, 170 9934F1C019303DC6005EF4AB /* LSGAppDelegate.h */,
171 9934F1C119303DC6005EF4AB /* LSGAppDelegate.m */, 171 9934F1C119303DC6005EF4AB /* LSGAppDelegate.m */,
172 9934F23819307153005EF4AB /* LSGMainViewController.h */, 172 9934F23819307153005EF4AB /* LSGMainViewController.h */,
173 9934F23919307153005EF4AB /* LSGMainViewController.m */, 173 9934F23919307153005EF4AB /* LSGMainViewController.m */,
174 9934F1B819303DC6005EF4AB /* Supporting Files */, 174 9934F1B819303DC6005EF4AB /* Supporting Files */,
175 3CD53D9C1B81F37900E1B01A /* VKSdkResources.bundle */, 175 3CD53D9C1B81F37900E1B01A /* VKSdkResources.bundle */,
176 ); 176 );
177 path = letsgameDemo; 177 path = letsgameDemo;
178 sourceTree = "<group>"; 178 sourceTree = "<group>";
179 }; 179 };
180 9934F1B819303DC6005EF4AB /* Supporting Files */ = { 180 9934F1B819303DC6005EF4AB /* Supporting Files */ = {
181 isa = PBXGroup; 181 isa = PBXGroup;
182 children = ( 182 children = (
183 9934F1B919303DC6005EF4AB /* letsgameDemo-Info.plist */, 183 9934F1B919303DC6005EF4AB /* letsgameDemo-Info.plist */,
184 9934F1BD19303DC6005EF4AB /* main.m */, 184 9934F1BD19303DC6005EF4AB /* main.m */,
185 9934F1BF19303DC6005EF4AB /* GameSDKDemo-Prefix.pch */, 185 9934F1BF19303DC6005EF4AB /* GameSDKDemo-Prefix.pch */,
186 ); 186 );
187 name = "Supporting Files"; 187 name = "Supporting Files";
188 sourceTree = "<group>"; 188 sourceTree = "<group>";
189 }; 189 };
190 /* End PBXGroup section */ 190 /* End PBXGroup section */
191 191
192 /* Begin PBXNativeTarget section */ 192 /* Begin PBXNativeTarget section */
193 9934F1AD19303DC6005EF4AB /* GameSDKDemo */ = { 193 9934F1AD19303DC6005EF4AB /* GameSDKDemo */ = {
194 isa = PBXNativeTarget; 194 isa = PBXNativeTarget;
195 buildConfigurationList = 9934F1DA19303DC6005EF4AB /* Build configuration list for PBXNativeTarget "GameSDKDemo" */; 195 buildConfigurationList = 9934F1DA19303DC6005EF4AB /* Build configuration list for PBXNativeTarget "GameSDKDemo" */;
196 buildPhases = ( 196 buildPhases = (
197 9934F1AA19303DC6005EF4AB /* Sources */, 197 9934F1AA19303DC6005EF4AB /* Sources */,
198 9934F1AB19303DC6005EF4AB /* Frameworks */, 198 9934F1AB19303DC6005EF4AB /* Frameworks */,
199 9934F1AC19303DC6005EF4AB /* Resources */, 199 9934F1AC19303DC6005EF4AB /* Resources */,
200 ); 200 );
201 buildRules = ( 201 buildRules = (
202 ); 202 );
203 dependencies = ( 203 dependencies = (
204 ); 204 );
205 name = GameSDKDemo; 205 name = GameSDKDemo;
206 productName = letsgameDemo; 206 productName = letsgameDemo;
207 productReference = 9934F1AE19303DC6005EF4AB /* GameSDKDemo.app */; 207 productReference = 9934F1AE19303DC6005EF4AB /* GameSDKDemo.app */;
208 productType = "com.apple.product-type.application"; 208 productType = "com.apple.product-type.application";
209 }; 209 };
210 /* End PBXNativeTarget section */ 210 /* End PBXNativeTarget section */
211 211
212 /* Begin PBXProject section */ 212 /* Begin PBXProject section */
213 9934F1A619303DC6005EF4AB /* Project object */ = { 213 9934F1A619303DC6005EF4AB /* Project object */ = {
214 isa = PBXProject; 214 isa = PBXProject;
215 attributes = { 215 attributes = {
216 CLASSPREFIX = LSG; 216 CLASSPREFIX = LSG;
217 LastUpgradeCheck = 0710; 217 LastUpgradeCheck = 0710;
218 TargetAttributes = { 218 TargetAttributes = {
219 9934F1AD19303DC6005EF4AB = { 219 9934F1AD19303DC6005EF4AB = {
220 DevelopmentTeam = TU2VD6BENZ; 220 DevelopmentTeam = TU2VD6BENZ;
221 }; 221 };
222 }; 222 };
223 }; 223 };
224 buildConfigurationList = 9934F1A919303DC6005EF4AB /* Build configuration list for PBXProject "GameSDKDemo" */; 224 buildConfigurationList = 9934F1A919303DC6005EF4AB /* Build configuration list for PBXProject "GameSDKDemo" */;
225 compatibilityVersion = "Xcode 3.2"; 225 compatibilityVersion = "Xcode 3.2";
226 developmentRegion = English; 226 developmentRegion = English;
227 hasScannedForEncodings = 0; 227 hasScannedForEncodings = 0;
228 knownRegions = ( 228 knownRegions = (
229 en, 229 en,
230 ); 230 );
231 mainGroup = 9934F1A519303DC6005EF4AB; 231 mainGroup = 9934F1A519303DC6005EF4AB;
232 productRefGroup = 9934F1AF19303DC6005EF4AB /* Products */; 232 productRefGroup = 9934F1AF19303DC6005EF4AB /* Products */;
233 projectDirPath = ""; 233 projectDirPath = "";
234 projectReferences = ( 234 projectReferences = (
235 { 235 {
236 ProductGroup = 75864D6B1FF368D9002C9012 /* Products */; 236 ProductGroup = 75864D6B1FF368D9002C9012 /* Products */;
237 ProjectRef = 75864D6A1FF368D9002C9012 /* GameSDK.xcodeproj */; 237 ProjectRef = 75864D6A1FF368D9002C9012 /* GameSDK.xcodeproj */;
238 }, 238 },
239 ); 239 );
240 projectRoot = ""; 240 projectRoot = "";
241 targets = ( 241 targets = (
242 9934F1AD19303DC6005EF4AB /* GameSDKDemo */, 242 9934F1AD19303DC6005EF4AB /* GameSDKDemo */,
243 ); 243 );
244 }; 244 };
245 /* End PBXProject section */ 245 /* End PBXProject section */
246 246
247 /* Begin PBXReferenceProxy section */ 247 /* Begin PBXReferenceProxy section */
248 75864D701FF368D9002C9012 /* libGameSDK.a */ = { 248 75864D701FF368D9002C9012 /* libGameSDK.a */ = {
249 isa = PBXReferenceProxy; 249 isa = PBXReferenceProxy;
250 fileType = archive.ar; 250 fileType = archive.ar;
251 path = libGameSDK.a; 251 path = libGameSDK.a;
252 remoteRef = 75864D6F1FF368D9002C9012 /* PBXContainerItemProxy */; 252 remoteRef = 75864D6F1FF368D9002C9012 /* PBXContainerItemProxy */;
253 sourceTree = BUILT_PRODUCTS_DIR; 253 sourceTree = BUILT_PRODUCTS_DIR;
254 }; 254 };
255 /* End PBXReferenceProxy section */ 255 /* End PBXReferenceProxy section */
256 256
257 /* Begin PBXResourcesBuildPhase section */ 257 /* Begin PBXResourcesBuildPhase section */
258 9934F1AC19303DC6005EF4AB /* Resources */ = { 258 9934F1AC19303DC6005EF4AB /* Resources */ = {
259 isa = PBXResourcesBuildPhase; 259 isa = PBXResourcesBuildPhase;
260 buildActionMask = 2147483647; 260 buildActionMask = 2147483647;
261 files = ( 261 files = (
262 3CD53D9D1B81F37900E1B01A /* VKSdkResources.bundle in Resources */, 262 3CD53D9D1B81F37900E1B01A /* VKSdkResources.bundle in Resources */,
263 752A5F421CDC826A00C36131 /* GameSDKResources.bundle in Resources */, 263 752A5F421CDC826A00C36131 /* GameSDKResources.bundle in Resources */,
264 9934F1C419303DC6005EF4AB /* Images.xcassets in Resources */, 264 9934F1C419303DC6005EF4AB /* Images.xcassets in Resources */,
265 ); 265 );
266 runOnlyForDeploymentPostprocessing = 0; 266 runOnlyForDeploymentPostprocessing = 0;
267 }; 267 };
268 /* End PBXResourcesBuildPhase section */ 268 /* End PBXResourcesBuildPhase section */
269 269
270 /* Begin PBXSourcesBuildPhase section */ 270 /* Begin PBXSourcesBuildPhase section */
271 9934F1AA19303DC6005EF4AB /* Sources */ = { 271 9934F1AA19303DC6005EF4AB /* Sources */ = {
272 isa = PBXSourcesBuildPhase; 272 isa = PBXSourcesBuildPhase;
273 buildActionMask = 2147483647; 273 buildActionMask = 2147483647;
274 files = ( 274 files = (
275 9934F1BE19303DC6005EF4AB /* main.m in Sources */, 275 9934F1BE19303DC6005EF4AB /* main.m in Sources */,
276 9934F1C219303DC6005EF4AB /* LSGAppDelegate.m in Sources */, 276 9934F1C219303DC6005EF4AB /* LSGAppDelegate.m in Sources */,
277 9934F23A19307153005EF4AB /* LSGMainViewController.m in Sources */, 277 9934F23A19307153005EF4AB /* LSGMainViewController.m in Sources */,
278 ); 278 );
279 runOnlyForDeploymentPostprocessing = 0; 279 runOnlyForDeploymentPostprocessing = 0;
280 }; 280 };
281 /* End PBXSourcesBuildPhase section */ 281 /* End PBXSourcesBuildPhase section */
282 282
283 /* Begin XCBuildConfiguration section */ 283 /* Begin XCBuildConfiguration section */
284 9934F1D819303DC6005EF4AB /* Debug */ = { 284 9934F1D819303DC6005EF4AB /* Debug */ = {
285 isa = XCBuildConfiguration; 285 isa = XCBuildConfiguration;
286 buildSettings = { 286 buildSettings = {
287 ALWAYS_SEARCH_USER_PATHS = YES; 287 ALWAYS_SEARCH_USER_PATHS = YES;
288 CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 288 CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
289 CLANG_CXX_LIBRARY = "libc++"; 289 CLANG_CXX_LIBRARY = "libc++";
290 CLANG_ENABLE_MODULES = YES; 290 CLANG_ENABLE_MODULES = YES;
291 CLANG_ENABLE_OBJC_ARC = YES; 291 CLANG_ENABLE_OBJC_ARC = YES;
292 CLANG_WARN_BOOL_CONVERSION = YES; 292 CLANG_WARN_BOOL_CONVERSION = YES;
293 CLANG_WARN_CONSTANT_CONVERSION = YES; 293 CLANG_WARN_CONSTANT_CONVERSION = YES;
294 CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 294 CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
295 CLANG_WARN_EMPTY_BODY = YES; 295 CLANG_WARN_EMPTY_BODY = YES;
296 CLANG_WARN_ENUM_CONVERSION = YES; 296 CLANG_WARN_ENUM_CONVERSION = YES;
297 CLANG_WARN_INT_CONVERSION = YES; 297 CLANG_WARN_INT_CONVERSION = YES;
298 CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 298 CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
299 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 299 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
300 "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 300 "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
301 COPY_PHASE_STRIP = YES; 301 COPY_PHASE_STRIP = YES;
302 ENABLE_TESTABILITY = YES; 302 ENABLE_TESTABILITY = YES;
303 GCC_C_LANGUAGE_STANDARD = gnu99; 303 GCC_C_LANGUAGE_STANDARD = gnu99;
304 GCC_DYNAMIC_NO_PIC = NO; 304 GCC_DYNAMIC_NO_PIC = NO;
305 GCC_OPTIMIZATION_LEVEL = 0; 305 GCC_OPTIMIZATION_LEVEL = 0;
306 GCC_PREPROCESSOR_DEFINITIONS = ( 306 GCC_PREPROCESSOR_DEFINITIONS = (
307 "DEBUG=1", 307 "DEBUG=1",
308 "$(inherited)", 308 "$(inherited)",
309 ); 309 );
310 GCC_SYMBOLS_PRIVATE_EXTERN = NO; 310 GCC_SYMBOLS_PRIVATE_EXTERN = NO;
311 GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 311 GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
312 GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 312 GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
313 GCC_WARN_UNDECLARED_SELECTOR = YES; 313 GCC_WARN_UNDECLARED_SELECTOR = YES;
314 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 314 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
315 GCC_WARN_UNUSED_FUNCTION = YES; 315 GCC_WARN_UNUSED_FUNCTION = YES;
316 GCC_WARN_UNUSED_VARIABLE = YES; 316 GCC_WARN_UNUSED_VARIABLE = YES;
317 HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/**"; 317 HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/**";
318 IPHONEOS_DEPLOYMENT_TARGET = 8.4; 318 IPHONEOS_DEPLOYMENT_TARGET = 8.4;
319 ONLY_ACTIVE_ARCH = YES; 319 ONLY_ACTIVE_ARCH = YES;
320 SDKROOT = iphoneos; 320 SDKROOT = iphoneos;
321 }; 321 };
322 name = Debug; 322 name = Debug;
323 }; 323 };
324 9934F1D919303DC6005EF4AB /* Release */ = { 324 9934F1D919303DC6005EF4AB /* Release */ = {
325 isa = XCBuildConfiguration; 325 isa = XCBuildConfiguration;
326 buildSettings = { 326 buildSettings = {
327 ALWAYS_SEARCH_USER_PATHS = YES; 327 ALWAYS_SEARCH_USER_PATHS = YES;
328 CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 328 CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
329 CLANG_CXX_LIBRARY = "libc++"; 329 CLANG_CXX_LIBRARY = "libc++";
330 CLANG_ENABLE_MODULES = YES; 330 CLANG_ENABLE_MODULES = YES;
331 CLANG_ENABLE_OBJC_ARC = YES; 331 CLANG_ENABLE_OBJC_ARC = YES;
332 CLANG_WARN_BOOL_CONVERSION = YES; 332 CLANG_WARN_BOOL_CONVERSION = YES;
333 CLANG_WARN_CONSTANT_CONVERSION = YES; 333 CLANG_WARN_CONSTANT_CONVERSION = YES;
334 CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 334 CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
335 CLANG_WARN_EMPTY_BODY = YES; 335 CLANG_WARN_EMPTY_BODY = YES;
336 CLANG_WARN_ENUM_CONVERSION = YES; 336 CLANG_WARN_ENUM_CONVERSION = YES;
337 CLANG_WARN_INT_CONVERSION = YES; 337 CLANG_WARN_INT_CONVERSION = YES;
338 CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 338 CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
339 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 339 CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
340 "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 340 "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
341 COPY_PHASE_STRIP = YES; 341 COPY_PHASE_STRIP = YES;
342 ENABLE_NS_ASSERTIONS = NO; 342 ENABLE_NS_ASSERTIONS = NO;
343 GCC_C_LANGUAGE_STANDARD = gnu99; 343 GCC_C_LANGUAGE_STANDARD = gnu99;
344 GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 344 GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
345 GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 345 GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
346 GCC_WARN_UNDECLARED_SELECTOR = YES; 346 GCC_WARN_UNDECLARED_SELECTOR = YES;
347 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 347 GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
348 GCC_WARN_UNUSED_FUNCTION = YES; 348 GCC_WARN_UNUSED_FUNCTION = YES;
349 GCC_WARN_UNUSED_VARIABLE = YES; 349 GCC_WARN_UNUSED_VARIABLE = YES;
350 HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/**"; 350 HEADER_SEARCH_PATHS = "$(PROJECT_DIR)/**";
351 IPHONEOS_DEPLOYMENT_TARGET = 8.4; 351 IPHONEOS_DEPLOYMENT_TARGET = 8.4;
352 ONLY_ACTIVE_ARCH = YES; 352 ONLY_ACTIVE_ARCH = YES;
353 SDKROOT = iphoneos; 353 SDKROOT = iphoneos;
354 VALIDATE_PRODUCT = YES; 354 VALIDATE_PRODUCT = YES;
355 }; 355 };
356 name = Release; 356 name = Release;
357 }; 357 };
358 9934F1DB19303DC6005EF4AB /* Debug */ = { 358 9934F1DB19303DC6005EF4AB /* Debug */ = {
359 isa = XCBuildConfiguration; 359 isa = XCBuildConfiguration;
360 baseConfigurationReference = 27019DCB1A208B1500DA560D /* Project.xcconfig */; 360 baseConfigurationReference = 27019DCB1A208B1500DA560D /* Project.xcconfig */;
361 buildSettings = { 361 buildSettings = {
362 ALWAYS_SEARCH_USER_PATHS = YES; 362 ALWAYS_SEARCH_USER_PATHS = YES;
363 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 363 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
364 ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 364 ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
365 CODE_SIGN_IDENTITY = "iPhone Developer"; 365 CODE_SIGN_IDENTITY = "iPhone Developer";
366 "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 366 "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
367 DEVELOPMENT_TEAM = TU2VD6BENZ; 367 DEVELOPMENT_TEAM = TU2VD6BENZ;
368 ENABLE_BITCODE = NO; 368 ENABLE_BITCODE = NO;
369 FRAMEWORK_SEARCH_PATHS = ( 369 FRAMEWORK_SEARCH_PATHS = (
370 "$(PROJECT_DIR)/../**", 370 "$(PROJECT_DIR)/../**",
371 "$(PROJECT_DIR)/letsgameDemo", 371 "$(PROJECT_DIR)/letsgameDemo",
372 ); 372 );
373 GCC_PRECOMPILE_PREFIX_HEADER = YES; 373 GCC_PRECOMPILE_PREFIX_HEADER = YES;
374 GCC_PREFIX_HEADER = "letsgameDemo/GameSDKDemo-Prefix.pch"; 374 GCC_PREFIX_HEADER = "letsgameDemo/GameSDKDemo-Prefix.pch";
375 HEADER_SEARCH_PATHS = ( 375 HEADER_SEARCH_PATHS = (
376 "$(PROJECT_DIR)/../GameSDK.framework/**", 376 "$(PROJECT_DIR)/../GameSDK.framework/**",
377 "$(inherited)", 377 "$(inherited)",
378 "$(PROJECT_DIR)/letsgameDemo/**", 378 "$(PROJECT_DIR)/letsgameDemo/**",
379 "$(PROJECT_DIR)/../VKBridge.framework/**", 379 "$(PROJECT_DIR)/../VKBridge.framework/**",
380 ); 380 );
381 INFOPLIST_FILE = "letsgameDemo/letsgameDemo-Info.plist"; 381 INFOPLIST_FILE = "letsgameDemo/letsgameDemo-Info.plist";
382 IPHONEOS_DEPLOYMENT_TARGET = 7.0; 382 IPHONEOS_DEPLOYMENT_TARGET = 7.0;
383 LIBRARY_SEARCH_PATHS = ""; 383 LIBRARY_SEARCH_PATHS = "";
384 ONLY_ACTIVE_ARCH = YES; 384 ONLY_ACTIVE_ARCH = YES;
385 OTHER_LDFLAGS = "-ObjC"; 385 OTHER_LDFLAGS = "-ObjC";
386 PRIVATE_HEADERS_FOLDER_PATH = ""; 386 PRIVATE_HEADERS_FOLDER_PATH = "";
387 PRODUCT_BUNDLE_IDENTIFIER = test.kang.purchase; 387 PRODUCT_BUNDLE_IDENTIFIER = test.kang.purchase;
388 PRODUCT_NAME = GameSDKDemo; 388 PRODUCT_NAME = GameSDKDemo;
389 PROVISIONING_PROFILE = "9a16d1a8-62c4-4ddd-a173-5ea852773122"; 389 PROVISIONING_PROFILE = "9a16d1a8-62c4-4ddd-a173-5ea852773122";
390 PROVISIONING_PROFILE_SPECIFIER = testpurchaseDev; 390 PROVISIONING_PROFILE_SPECIFIER = testpurchaseDev;
391 PUBLIC_HEADERS_FOLDER_PATH = ""; 391 PUBLIC_HEADERS_FOLDER_PATH = "";
392 WRAPPER_EXTENSION = app; 392 WRAPPER_EXTENSION = app;
393 }; 393 };
394 name = Debug; 394 name = Debug;
395 }; 395 };
396 9934F1DC19303DC6005EF4AB /* Release */ = { 396 9934F1DC19303DC6005EF4AB /* Release */ = {
397 isa = XCBuildConfiguration; 397 isa = XCBuildConfiguration;
398 baseConfigurationReference = 27019DCB1A208B1500DA560D /* Project.xcconfig */; 398 baseConfigurationReference = 27019DCB1A208B1500DA560D /* Project.xcconfig */;
399 buildSettings = { 399 buildSettings = {
400 ALWAYS_SEARCH_USER_PATHS = YES; 400 ALWAYS_SEARCH_USER_PATHS = YES;
401 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 401 ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
402 ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 402 ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
403 CODE_SIGN_IDENTITY = "iPhone Developer"; 403 CODE_SIGN_IDENTITY = "iPhone Developer";
404 "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; 404 "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
405 DEVELOPMENT_TEAM = TU2VD6BENZ; 405 DEVELOPMENT_TEAM = TU2VD6BENZ;
406 ENABLE_BITCODE = NO; 406 ENABLE_BITCODE = NO;
407 FRAMEWORK_SEARCH_PATHS = ( 407 FRAMEWORK_SEARCH_PATHS = (
408 "$(PROJECT_DIR)/../**", 408 "$(PROJECT_DIR)/../**",
409 "$(PROJECT_DIR)/letsgameDemo", 409 "$(PROJECT_DIR)/letsgameDemo",
410 ); 410 );
411 GCC_PRECOMPILE_PREFIX_HEADER = YES; 411 GCC_PRECOMPILE_PREFIX_HEADER = YES;
412 GCC_PREFIX_HEADER = "letsgameDemo/GameSDKDemo-Prefix.pch"; 412 GCC_PREFIX_HEADER = "letsgameDemo/GameSDKDemo-Prefix.pch";
413 HEADER_SEARCH_PATHS = ( 413 HEADER_SEARCH_PATHS = (
414 "$(PROJECT_DIR)/../GameSDK.framework/**", 414 "$(PROJECT_DIR)/../GameSDK.framework/**",
415 "$(inherited)", 415 "$(inherited)",
416 "$(PROJECT_DIR)/letsgameDemo/**", 416 "$(PROJECT_DIR)/letsgameDemo/**",
417 "$(PROJECT_DIR)/../VKBridge.framework/**", 417 "$(PROJECT_DIR)/../VKBridge.framework/**",
418 ); 418 );
419 INFOPLIST_FILE = "letsgameDemo/letsgameDemo-Info.plist"; 419 INFOPLIST_FILE = "letsgameDemo/letsgameDemo-Info.plist";
420 IPHONEOS_DEPLOYMENT_TARGET = 7.0; 420 IPHONEOS_DEPLOYMENT_TARGET = 7.0;
421 LIBRARY_SEARCH_PATHS = ""; 421 LIBRARY_SEARCH_PATHS = "";
422 ONLY_ACTIVE_ARCH = YES; 422 ONLY_ACTIVE_ARCH = YES;
423 OTHER_LDFLAGS = "-ObjC"; 423 OTHER_LDFLAGS = "-ObjC";
424 PRIVATE_HEADERS_FOLDER_PATH = ""; 424 PRIVATE_HEADERS_FOLDER_PATH = "";
425 PRODUCT_BUNDLE_IDENTIFIER = test.kang.purchase; 425 PRODUCT_BUNDLE_IDENTIFIER = test.kang.purchase;
426 PRODUCT_NAME = GameSDKDemo; 426 PRODUCT_NAME = GameSDKDemo;
427 PROVISIONING_PROFILE = "7b28fefe-7c60-41a6-ac6c-b21726228700"; 427 PROVISIONING_PROFILE = "7b28fefe-7c60-41a6-ac6c-b21726228700";
428 PROVISIONING_PROFILE_SPECIFIER = testpurchasekang; 428 PROVISIONING_PROFILE_SPECIFIER = testpurchasekang;
429 PUBLIC_HEADERS_FOLDER_PATH = ""; 429 PUBLIC_HEADERS_FOLDER_PATH = "";
430 WRAPPER_EXTENSION = app; 430 WRAPPER_EXTENSION = app;
431 }; 431 };
432 name = Release; 432 name = Release;
433 }; 433 };
434 /* End XCBuildConfiguration section */ 434 /* End XCBuildConfiguration section */
435 435
436 /* Begin XCConfigurationList section */ 436 /* Begin XCConfigurationList section */
437 9934F1A919303DC6005EF4AB /* Build configuration list for PBXProject "GameSDKDemo" */ = { 437 9934F1A919303DC6005EF4AB /* Build configuration list for PBXProject "GameSDKDemo" */ = {
438 isa = XCConfigurationList; 438 isa = XCConfigurationList;
439 buildConfigurations = ( 439 buildConfigurations = (
440 9934F1D819303DC6005EF4AB /* Debug */, 440 9934F1D819303DC6005EF4AB /* Debug */,
441 9934F1D919303DC6005EF4AB /* Release */, 441 9934F1D919303DC6005EF4AB /* Release */,
442 ); 442 );
443 defaultConfigurationIsVisible = 0; 443 defaultConfigurationIsVisible = 0;
444 defaultConfigurationName = Release; 444 defaultConfigurationName = Release;
445 }; 445 };
446 9934F1DA19303DC6005EF4AB /* Build configuration list for PBXNativeTarget "GameSDKDemo" */ = { 446 9934F1DA19303DC6005EF4AB /* Build configuration list for PBXNativeTarget "GameSDKDemo" */ = {
447 isa = XCConfigurationList; 447 isa = XCConfigurationList;
448 buildConfigurations = ( 448 buildConfigurations = (
449 9934F1DB19303DC6005EF4AB /* Debug */, 449 9934F1DB19303DC6005EF4AB /* Debug */,
450 9934F1DC19303DC6005EF4AB /* Release */, 450 9934F1DC19303DC6005EF4AB /* Release */,
451 ); 451 );
452 defaultConfigurationIsVisible = 0; 452 defaultConfigurationIsVisible = 0;
453 defaultConfigurationName = Release; 453 defaultConfigurationName = Release;
454 }; 454 };
455 /* End XCConfigurationList section */ 455 /* End XCConfigurationList section */
ios/GameSDKDemo/GameSDKDemo.xcodeproj/project.xcworkspace/xcuserdata/yanglele.xcuserdatad/UserInterfaceState.xcuserstate
No preview for this file type
ios/GameSDKDemo/GameSDKDemo.xcodeproj/xcuserdata/yanglele.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <Bucket 2 <Bucket
3 type = "1" 3 type = "1"
4 version = "2.0"> 4 version = "2.0">
5 <Breakpoints> 5 <Breakpoints>
6 <BreakpointProxy 6 <BreakpointProxy
7 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> 7 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
8 <BreakpointContent 8 <BreakpointContent
9 shouldBeEnabled = "Yes" 9 shouldBeEnabled = "Yes"
10 ignoreCount = "0" 10 ignoreCount = "0"
11 continueAfterRunningActions = "No" 11 continueAfterRunningActions = "No"
12 filePath = "../../../iosgamesdk/GameSDK/letsgame/service/httpService/LSGUserService.m" 12 filePath = "../../../iosgamesdk/GameSDK/letsgame/service/httpService/LSGUserService.m"
13 timestampString = "536217870.40553" 13 timestampString = "537441826.965482"
14 startingColumnNumber = "9223372036854775807" 14 startingColumnNumber = "9223372036854775807"
15 endingColumnNumber = "9223372036854775807" 15 endingColumnNumber = "9223372036854775807"
16 startingLineNumber = "594" 16 startingLineNumber = "594"
17 endingLineNumber = "594" 17 endingLineNumber = "594"
18 landmarkName = "-appObtainWeCharAppIDWithAppId:appKey:result:" 18 landmarkName = "-appObtainWeCharAppIDWithAppId:appKey:result:"
19 landmarkType = "7"> 19 landmarkType = "7">
20 </BreakpointContent> 20 </BreakpointContent>
21 </BreakpointProxy> 21 </BreakpointProxy>
22 <BreakpointProxy 22 <BreakpointProxy
23 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> 23 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
24 <BreakpointContent 24 <BreakpointContent
25 shouldBeEnabled = "Yes" 25 shouldBeEnabled = "Yes"
26 ignoreCount = "0" 26 ignoreCount = "0"
27 continueAfterRunningActions = "No" 27 continueAfterRunningActions = "No"
28 filePath = "../../../iosgamesdk/GameSDK/letsgame/LetsGameAPI.m" 28 filePath = "../../../iosgamesdk/GameSDK/letsgame/LetsGameAPI.m"
29 timestampString = "536126823.106813" 29 timestampString = "537764957.2615269"
30 startingColumnNumber = "9223372036854775807" 30 startingColumnNumber = "9223372036854775807"
31 endingColumnNumber = "9223372036854775807" 31 endingColumnNumber = "9223372036854775807"
32 startingLineNumber = "281" 32 startingLineNumber = "287"
33 endingLineNumber = "281" 33 endingLineNumber = "287"
34 landmarkName = "-registerAppWeChatWithAppId:appKey:Success:failure:" 34 landmarkName = "-registerAppWeChatWithAppId:appKey:Success:failure:"
35 landmarkType = "7"> 35 landmarkType = "7">
36 <Locations> 36 <Locations>
37 <Location 37 <Location
38 shouldBeEnabled = "Yes" 38 shouldBeEnabled = "Yes"
39 ignoreCount = "0" 39 ignoreCount = "0"
40 continueAfterRunningActions = "No" 40 continueAfterRunningActions = "No"
41 symbolName = "-[LetsGameAPI registerAppWeChatWithAppId:appKey:Success:failure:]" 41 symbolName = "-[LetsGameAPI registerAppWeChatWithAppId:appKey:Success:failure:]"
42 moduleName = "GameSDKDemo" 42 moduleName = "GameSDKDemo"
43 usesParentBreakpointCondition = "Yes" 43 usesParentBreakpointCondition = "Yes"
44 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/LetsGameAPI.m" 44 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/LetsGameAPI.m"
45 timestampString = "536212412.523702" 45 timestampString = "537763058.957817"
46 startingColumnNumber = "9223372036854775807" 46 startingColumnNumber = "9223372036854775807"
47 endingColumnNumber = "9223372036854775807" 47 endingColumnNumber = "9223372036854775807"
48 startingLineNumber = "281" 48 startingLineNumber = "287"
49 endingLineNumber = "281" 49 endingLineNumber = "287"
50 offsetFromSymbolStart = "161"> 50 offsetFromSymbolStart = "161">
51 </Location> 51 </Location>
52 <Location 52 <Location
53 shouldBeEnabled = "Yes" 53 shouldBeEnabled = "Yes"
54 ignoreCount = "0" 54 ignoreCount = "0"
55 continueAfterRunningActions = "No" 55 continueAfterRunningActions = "No"
56 symbolName = "__65-[LetsGameAPI registerAppWeChatWithAppId:appKey:Success:failure:]_block_invoke" 56 symbolName = "__65-[LetsGameAPI registerAppWeChatWithAppId:appKey:Success:failure:]_block_invoke"
57 moduleName = "GameSDKDemo" 57 moduleName = "GameSDKDemo"
58 usesParentBreakpointCondition = "Yes" 58 usesParentBreakpointCondition = "Yes"
59 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/LetsGameAPI.m" 59 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/LetsGameAPI.m"
60 timestampString = "536212412.526449" 60 timestampString = "537763058.962042"
61 startingColumnNumber = "9223372036854775807" 61 startingColumnNumber = "9223372036854775807"
62 endingColumnNumber = "9223372036854775807" 62 endingColumnNumber = "9223372036854775807"
63 startingLineNumber = "281" 63 startingLineNumber = "287"
64 endingLineNumber = "281" 64 endingLineNumber = "287"
65 offsetFromSymbolStart = "19"> 65 offsetFromSymbolStart = "19">
66 </Location> 66 </Location>
67 </Locations> 67 </Locations>
68 </BreakpointContent> 68 </BreakpointContent>
69 </BreakpointProxy> 69 </BreakpointProxy>
70 <BreakpointProxy 70 <BreakpointProxy
71 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> 71 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
72 <BreakpointContent 72 <BreakpointContent
73 shouldBeEnabled = "Yes" 73 shouldBeEnabled = "Yes"
74 ignoreCount = "0" 74 ignoreCount = "0"
75 continueAfterRunningActions = "No" 75 continueAfterRunningActions = "No"
76 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGWeChatViewController.m" 76 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGWeChatViewController.m"
77 timestampString = "536126480.108287" 77 timestampString = "536126480.108287"
78 startingColumnNumber = "9223372036854775807" 78 startingColumnNumber = "9223372036854775807"
79 endingColumnNumber = "9223372036854775807" 79 endingColumnNumber = "9223372036854775807"
80 startingLineNumber = "51" 80 startingLineNumber = "51"
81 endingLineNumber = "51" 81 endingLineNumber = "51"
82 landmarkName = "-registerAppWeChatAppIDWithAppId:appKey:success:failure:" 82 landmarkName = "-registerAppWeChatAppIDWithAppId:appKey:success:failure:"
83 landmarkType = "7"> 83 landmarkType = "7">
84 <Locations> 84 <Locations>
85 <Location 85 <Location
86 shouldBeEnabled = "Yes" 86 shouldBeEnabled = "Yes"
87 ignoreCount = "0" 87 ignoreCount = "0"
88 continueAfterRunningActions = "No" 88 continueAfterRunningActions = "No"
89 symbolName = "-[LSGWeChatViewController registerAppWeChatAppIDWithAppId:appKey:success:failure:]" 89 symbolName = "-[LSGWeChatViewController registerAppWeChatAppIDWithAppId:appKey:success:failure:]"
90 moduleName = "GameSDKDemo" 90 moduleName = "GameSDKDemo"
91 usesParentBreakpointCondition = "Yes" 91 usesParentBreakpointCondition = "Yes"
92 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/registAndLogin/LSGWeChatViewController.m" 92 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/registAndLogin/LSGWeChatViewController.m"
93 timestampString = "536212412.554201" 93 timestampString = "537763058.96706"
94 startingColumnNumber = "9223372036854775807" 94 startingColumnNumber = "9223372036854775807"
95 endingColumnNumber = "9223372036854775807" 95 endingColumnNumber = "9223372036854775807"
96 startingLineNumber = "51" 96 startingLineNumber = "51"
97 endingLineNumber = "51" 97 endingLineNumber = "51"
98 offsetFromSymbolStart = "201"> 98 offsetFromSymbolStart = "201">
99 </Location> 99 </Location>
100 <Location 100 <Location
101 shouldBeEnabled = "Yes" 101 shouldBeEnabled = "Yes"
102 ignoreCount = "0" 102 ignoreCount = "0"
103 continueAfterRunningActions = "No" 103 continueAfterRunningActions = "No"
104 symbolName = "__82-[LSGWeChatViewController registerAppWeChatAppIDWithAppId:appKey:success:failure:]_block_invoke" 104 symbolName = "__82-[LSGWeChatViewController registerAppWeChatAppIDWithAppId:appKey:success:failure:]_block_invoke"
105 moduleName = "GameSDKDemo" 105 moduleName = "GameSDKDemo"
106 usesParentBreakpointCondition = "Yes" 106 usesParentBreakpointCondition = "Yes"
107 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/registAndLogin/LSGWeChatViewController.m" 107 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/registAndLogin/LSGWeChatViewController.m"
108 timestampString = "536212412.557216" 108 timestampString = "537763058.969188"
109 startingColumnNumber = "9223372036854775807" 109 startingColumnNumber = "9223372036854775807"
110 endingColumnNumber = "9223372036854775807" 110 endingColumnNumber = "9223372036854775807"
111 startingLineNumber = "52" 111 startingLineNumber = "52"
112 endingLineNumber = "52" 112 endingLineNumber = "52"
113 offsetFromSymbolStart = "44"> 113 offsetFromSymbolStart = "44">
114 </Location> 114 </Location>
115 </Locations> 115 </Locations>
116 </BreakpointContent> 116 </BreakpointContent>
117 </BreakpointProxy> 117 </BreakpointProxy>
118 <BreakpointProxy 118 <BreakpointProxy
119 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> 119 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
120 <BreakpointContent 120 <BreakpointContent
121 shouldBeEnabled = "Yes" 121 shouldBeEnabled = "Yes"
122 ignoreCount = "0" 122 ignoreCount = "0"
123 continueAfterRunningActions = "No" 123 continueAfterRunningActions = "No"
124 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGWeChatViewController.m" 124 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGWeChatViewController.m"
125 timestampString = "536126480.108348" 125 timestampString = "536126480.108348"
126 startingColumnNumber = "9223372036854775807" 126 startingColumnNumber = "9223372036854775807"
127 endingColumnNumber = "9223372036854775807" 127 endingColumnNumber = "9223372036854775807"
128 startingLineNumber = "34" 128 startingLineNumber = "34"
129 endingLineNumber = "34" 129 endingLineNumber = "34"
130 landmarkName = "+isWeChatInstall" 130 landmarkName = "+isWeChatInstall"
131 landmarkType = "7"> 131 landmarkType = "7">
132 </BreakpointContent> 132 </BreakpointContent>
133 </BreakpointProxy> 133 </BreakpointProxy>
134 <BreakpointProxy 134 <BreakpointProxy
135 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> 135 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
136 <BreakpointContent 136 <BreakpointContent
137 shouldBeEnabled = "Yes" 137 shouldBeEnabled = "Yes"
138 ignoreCount = "0" 138 ignoreCount = "0"
139 continueAfterRunningActions = "No" 139 continueAfterRunningActions = "No"
140 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGFBLoginViewController.m" 140 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGFBLoginViewController.m"
141 timestampString = "536127479.611329" 141 timestampString = "536127479.611329"
142 startingColumnNumber = "9223372036854775807" 142 startingColumnNumber = "9223372036854775807"
143 endingColumnNumber = "9223372036854775807" 143 endingColumnNumber = "9223372036854775807"
144 startingLineNumber = "68" 144 startingLineNumber = "68"
145 endingLineNumber = "68" 145 endingLineNumber = "68"
146 landmarkName = "-injectJSObject" 146 landmarkName = "-injectJSObject"
147 landmarkType = "7"> 147 landmarkType = "7">
148 </BreakpointContent> 148 </BreakpointContent>
149 </BreakpointProxy> 149 </BreakpointProxy>
150 <BreakpointProxy 150 <BreakpointProxy
151 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> 151 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
152 <BreakpointContent 152 <BreakpointContent
153 shouldBeEnabled = "Yes" 153 shouldBeEnabled = "Yes"
154 ignoreCount = "0" 154 ignoreCount = "0"
155 continueAfterRunningActions = "No" 155 continueAfterRunningActions = "No"
156 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGFBLoginViewController.m" 156 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGFBLoginViewController.m"
157 timestampString = "536127479.611763" 157 timestampString = "536127479.611763"
158 startingColumnNumber = "9223372036854775807" 158 startingColumnNumber = "9223372036854775807"
159 endingColumnNumber = "9223372036854775807" 159 endingColumnNumber = "9223372036854775807"
160 startingLineNumber = "31" 160 startingLineNumber = "31"
161 endingLineNumber = "31" 161 endingLineNumber = "31"
162 landmarkName = "-loadView" 162 landmarkName = "-loadView"
163 landmarkType = "7"> 163 landmarkType = "7">
164 </BreakpointContent> 164 </BreakpointContent>
165 </BreakpointProxy> 165 </BreakpointProxy>
166 <BreakpointProxy 166 <BreakpointProxy
167 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> 167 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
168 <BreakpointContent 168 <BreakpointContent
169 shouldBeEnabled = "Yes" 169 shouldBeEnabled = "Yes"
170 ignoreCount = "0" 170 ignoreCount = "0"
171 continueAfterRunningActions = "No" 171 continueAfterRunningActions = "No"
172 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGFBLoginViewController.m" 172 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGFBLoginViewController.m"
173 timestampString = "536127479.61203" 173 timestampString = "536127479.61203"
174 startingColumnNumber = "9223372036854775807" 174 startingColumnNumber = "9223372036854775807"
175 endingColumnNumber = "9223372036854775807" 175 endingColumnNumber = "9223372036854775807"
176 startingLineNumber = "93" 176 startingLineNumber = "93"
177 endingLineNumber = "93" 177 endingLineNumber = "93"
178 landmarkName = "-webViewDidFinishLoad:" 178 landmarkName = "-webViewDidFinishLoad:"
179 landmarkType = "7"> 179 landmarkType = "7">
180 </BreakpointContent> 180 </BreakpointContent>
181 </BreakpointProxy> 181 </BreakpointProxy>
182 <BreakpointProxy 182 <BreakpointProxy
183 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> 183 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
184 <BreakpointContent 184 <BreakpointContent
185 shouldBeEnabled = "Yes" 185 shouldBeEnabled = "Yes"
186 ignoreCount = "0" 186 ignoreCount = "0"
187 continueAfterRunningActions = "No" 187 continueAfterRunningActions = "No"
188 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGFBLoginViewController.m" 188 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGFBLoginViewController.m"
189 timestampString = "536127479.61231" 189 timestampString = "536127479.61231"
190 startingColumnNumber = "9223372036854775807" 190 startingColumnNumber = "9223372036854775807"
191 endingColumnNumber = "9223372036854775807" 191 endingColumnNumber = "9223372036854775807"
192 startingLineNumber = "102" 192 startingLineNumber = "102"
193 endingLineNumber = "102" 193 endingLineNumber = "102"
194 landmarkName = "-webView:shouldStartLoadWithRequest:navigationType:" 194 landmarkName = "-webView:shouldStartLoadWithRequest:navigationType:"
195 landmarkType = "7"> 195 landmarkType = "7">
196 </BreakpointContent> 196 </BreakpointContent>
197 </BreakpointProxy> 197 </BreakpointProxy>
198 <BreakpointProxy 198 <BreakpointProxy
199 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint"> 199 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
200 <BreakpointContent 200 <BreakpointContent
201 shouldBeEnabled = "Yes" 201 shouldBeEnabled = "Yes"
202 ignoreCount = "0" 202 ignoreCount = "0"
203 continueAfterRunningActions = "No" 203 continueAfterRunningActions = "No"
204 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGAutoLoginViewController.m" 204 filePath = "../../../iosgamesdk/GameSDK/letsgame/service/httpService/LSGUserService.m"
205 timestampString = "536217870.406435" 205 timestampString = "537441826.9659441"
206 startingColumnNumber = "9223372036854775807"
207 endingColumnNumber = "9223372036854775807"
208 startingLineNumber = "49"
209 endingLineNumber = "49"
210 landmarkName = "-quickRegSuccess:failure:"
211 landmarkType = "7">
212 </BreakpointContent>
213 </BreakpointProxy>
214 <BreakpointProxy
215 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
216 <BreakpointContent
217 shouldBeEnabled = "Yes"
218 ignoreCount = "0"
219 continueAfterRunningActions = "No"
220 filePath = "../../../iosgamesdk/GameSDK/letsgame/service/httpService/LSGUserService.m"
221 timestampString = "537441826.966015"
222 startingColumnNumber = "9223372036854775807"
223 endingColumnNumber = "9223372036854775807"
224 startingLineNumber = "47"
225 endingLineNumber = "47"
226 landmarkName = "-quickRegSuccess:failure:"
227 landmarkType = "7">
228 </BreakpointContent>
229 </BreakpointProxy>
230 <BreakpointProxy
231 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
232 <BreakpointContent
233 shouldBeEnabled = "Yes"
234 ignoreCount = "0"
235 continueAfterRunningActions = "No"
236 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGQuickLoginViewController.m"
237 timestampString = "537764957.262828"
238 startingColumnNumber = "9223372036854775807"
239 endingColumnNumber = "9223372036854775807"
240 startingLineNumber = "757"
241 endingLineNumber = "757"
242 landmarkName = "-tableView:cellForRowAtIndexPath:"
243 landmarkType = "7">
244 </BreakpointContent>
245 </BreakpointProxy>
246 <BreakpointProxy
247 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
248 <BreakpointContent
249 shouldBeEnabled = "Yes"
250 ignoreCount = "0"
251 continueAfterRunningActions = "No"
252 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGUserBaseViewController.m"
253 timestampString = "537442056.715101"
254 startingColumnNumber = "9223372036854775807"
255 endingColumnNumber = "9223372036854775807"
256 startingLineNumber = "554"
257 endingLineNumber = "554"
258 landmarkName = "-loginWithName:passwd:accountType:showLoadingIndicator:"
259 landmarkType = "7">
260 <Locations>
261 <Location
262 shouldBeEnabled = "Yes"
263 ignoreCount = "0"
264 continueAfterRunningActions = "No"
265 symbolName = "-[LSGUserBaseViewController loginWithName:passwd:accountType:showLoadingIndicator:]"
266 moduleName = "GameSDKDemo"
267 usesParentBreakpointCondition = "Yes"
268 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/registAndLogin/LSGUserBaseViewController.m"
269 timestampString = "537763059.006657"
270 startingColumnNumber = "9223372036854775807"
271 endingColumnNumber = "9223372036854775807"
272 startingLineNumber = "554"
273 endingLineNumber = "554"
274 offsetFromSymbolStart = "267">
275 </Location>
276 <Location
277 shouldBeEnabled = "Yes"
278 ignoreCount = "0"
279 continueAfterRunningActions = "No"
280 symbolName = "__83-[LSGUserBaseViewController loginWithName:passwd:accountType:showLoadingIndicator:]_block_invoke"
281 moduleName = "GameSDKDemo"
282 usesParentBreakpointCondition = "Yes"
283 urlString = "file:///Users/yanglele/workproject/project/GumpSDK/iosgamesdk/GameSDK/letsgame/registAndLogin/LSGUserBaseViewController.m"
284 timestampString = "537763059.008971"
285 startingColumnNumber = "9223372036854775807"
286 endingColumnNumber = "9223372036854775807"
287 startingLineNumber = "554"
288 endingLineNumber = "554"
289 offsetFromSymbolStart = "19">
290 </Location>
291 </Locations>
292 </BreakpointContent>
293 </BreakpointProxy>
294 <BreakpointProxy
295 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
296 <BreakpointContent
297 shouldBeEnabled = "Yes"
298 ignoreCount = "0"
299 continueAfterRunningActions = "No"
300 filePath = "../../../iosgamesdk/GameSDK/letsgame/service/httpService/LSGUserService.m"
301 timestampString = "537441826.9662091"
302 startingColumnNumber = "9223372036854775807"
303 endingColumnNumber = "9223372036854775807"
304 startingLineNumber = "370"
305 endingLineNumber = "370"
306 landmarkName = "-loginWithName:passwd:accountType:success:failure:"
307 landmarkType = "7">
308 </BreakpointContent>
309 </BreakpointProxy>
310 <BreakpointProxy
311 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
312 <BreakpointContent
313 shouldBeEnabled = "Yes"
314 ignoreCount = "0"
315 continueAfterRunningActions = "No"
316 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGUserBaseViewController.m"
317 timestampString = "537442056.715198"
318 startingColumnNumber = "9223372036854775807"
319 endingColumnNumber = "9223372036854775807"
320 startingLineNumber = "570"
321 endingLineNumber = "570"
322 landmarkName = "-loginWithName:passwd:accountType:showLoadingIndicator:"
323 landmarkType = "7">
324 </BreakpointContent>
325 </BreakpointProxy>
326 <BreakpointProxy
327 BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
328 <BreakpointContent
329 shouldBeEnabled = "Yes"
330 ignoreCount = "0"
331 continueAfterRunningActions = "No"
332 filePath = "../../../iosgamesdk/GameSDK/letsgame/registAndLogin/LSGQuickLoginViewController.m"
333 timestampString = "537764957.263477"
206 startingColumnNumber = "9223372036854775807" 334 startingColumnNumber = "9223372036854775807"
207 endingColumnNumber = "9223372036854775807" 335 endingColumnNumber = "9223372036854775807"
208 startingLineNumber = "56" 336 startingLineNumber = "826"
209 endingLineNumber = "56" 337 endingLineNumber = "826"
210 landmarkName = "-viewDidLoad" 338 landmarkName = "-layerViewButton"
211 landmarkType = "7"> 339 landmarkType = "7">
212 </BreakpointContent> 340 </BreakpointContent>
213 </BreakpointProxy> 341 </BreakpointProxy>
214 </Breakpoints> 342 </Breakpoints>
215 </Bucket> 343 </Bucket>
216 344
ios/GameSDKDemo/letsgameDemo/LSGAppDelegate.m
1 // 1 //
2 // LSGAppDelegate.m 2 // LSGAppDelegate.m
3 // letsgameDemo 3 // letsgameDemo
4 // 4 //
5 // Created by zhy on 14-5-24. 5 // Created by zhy on 14-5-24.
6 // 6 //
7 // 7 //
8 8
9 #import "LSGAppDelegate.h" 9 #import "LSGAppDelegate.h"
10 #import "LSGMainViewController.h" 10 #import "LSGMainViewController.h"
11 #import "LetsGameAPI.h" 11 #import "LetsGameAPI.h"
12 12
13 @implementation LSGAppDelegate 13 @implementation LSGAppDelegate
14 14
15 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 15 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
16 { 16 {
17 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 17 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
18 [LetsGameAPI DeviceOrientationIsHorizontal:NO];
18 19
19 LSGMainViewController *viewController = [[LSGMainViewController alloc] init]; 20 LSGMainViewController *viewController = [[LSGMainViewController alloc] init];
20 self.window.rootViewController = viewController; 21 self.window.rootViewController = viewController;
21 [self.window addSubview:viewController.view]; 22 [self.window addSubview:viewController.view];
22 23
23 self.window.backgroundColor = [UIColor whiteColor]; 24 self.window.backgroundColor = [UIColor whiteColor];
24 [self.window makeKeyAndVisible]; 25 [self.window makeKeyAndVisible];
25 26
26 // [[LetsGameAPI instance] decideIsDebug:1]; 27 // [[LetsGameAPI instance] decideIsDebug:1];
27 28
28 //显示是否侵权的接口 29 //显示是否侵权的接口
29 // [[LetsGameAPI instance] gameObtainSafeSetInfoWithAppId:@"10056" ChannelId:@"1000" handleCallBack:^(BOOL resultStatus) { 30 // [[LetsGameAPI instance] gameObtainSafeSetInfoWithAppId:@"10056" ChannelId:@"1000" handleCallBack:^(BOOL resultStatus) {
30 // if (resultStatus) { 31 // if (resultStatus) {
31 // NSLog(@"YES 侵权"); 32 // NSLog(@"YES 侵权");
32 // }else{ 33 // }else{
33 // NSLog(@"NO 不侵权"); 34 // NSLog(@"NO 不侵权");
34 // } 35 // }
35 // }]; 36 // }];
36 37
37 //微信登陆 38 //微信登陆
38 // [[LetsGameAPI instance] registerAppWeChatWithAppId:@"100" appKey:@"f899139df5e1059396431415e770c6dd" Success:^{ 39 // [[LetsGameAPI instance] registerAppWeChatWithAppId:@"100" appKey:@"f899139df5e1059396431415e770c6dd" Success:^{
39 // NSLog(@"注册成功"); 40 // NSLog(@"注册成功");
40 // } failure:^{ 41 // } failure:^{
41 // NSLog(@"注册失败"); 42 // NSLog(@"注册失败");
42 // }]; 43 // }];
43 44
44 [[UIApplication sharedApplication] setStatusBarHidden:YES]; 45 [[UIApplication sharedApplication] setStatusBarHidden:YES];
45 [[LetsGameAPI instance] registeIapObserver]; 46 [[LetsGameAPI instance] registeIapObserver];
46 47
47 return YES; 48 return YES;
48 } 49 }
49 50
50 - (void)applicationWillResignActive:(UIApplication *)application 51 - (void)applicationWillResignActive:(UIApplication *)application
51 { 52 {
52 // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 53 // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
53 // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 54 // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
54 } 55 }
55 56
56 - (void)applicationDidEnterBackground:(UIApplication *)application 57 - (void)applicationDidEnterBackground:(UIApplication *)application
57 { 58 {
58 // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 59 // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
59 // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 60 // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
60 } 61 }
61 62
62 - (void)applicationWillEnterForeground:(UIApplication *)application 63 - (void)applicationWillEnterForeground:(UIApplication *)application
63 { 64 {
64 // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 65 // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
65 } 66 }
66 67
67 -(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation{ 68 -(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation{
68 return [[LetsGameAPI instance] handleOpenURL:url sourceApplication:sourceApplication]; 69 return [[LetsGameAPI instance] handleOpenURL:url sourceApplication:sourceApplication];
69 //return [[LetsGameAPI instance].vkBridge processOpenURL:url fromApplication:sourceApplication]; 70 //return [[LetsGameAPI instance].vkBridge processOpenURL:url fromApplication:sourceApplication];
70 } 71 }
71 72
72 73
73 @end 74 @end
74 75
ios/GameSDKDemo/letsgameDemo/LSGMainViewController.m
1 // 1 //
2 // LSGMainViewController.m 2 // LSGMainViewController.m
3 // letsgameDemo 3 // letsgameDemo
4 // 4 //
5 // Created by zhy on 14-5-24. 5 // Created by zhy on 14-5-24.
6 // 6 //
7 // 7 //
8 8
9 #import "LSGMainViewController.h" 9 #import "LSGMainViewController.h"
10 #import "LetsGameAPI.h" 10 #import "LetsGameAPI.h"
11 #import "VKBridge.h" 11 #import "VKBridge.h"
12 12
13 13
14 @interface LSGMainViewController () 14 @interface LSGMainViewController ()
15 15
16 @property (nonatomic, strong) UILabel *resultLabel; 16 @property (nonatomic, strong) UILabel *resultLabel;
17 17
18 @property(nonatomic,strong) UIButton *vkActivityShareBtn; 18 @property(nonatomic,strong) UIButton *vkActivityShareBtn;
19 19
20 @property(nonatomic,copy) NSString *sessionKey; 20 @property(nonatomic,copy) NSString *sessionKey;
21 @end 21 @end
22 22
23 @implementation LSGMainViewController 23 @implementation LSGMainViewController
24 24
25 - (void)loadView { 25 - (void)loadView {
26 [super loadView]; 26 [super loadView];
27 NSLog(@"i come in"); 27 NSLog(@"i come in");
28 self.view.backgroundColor = [UIColor whiteColor]; 28 self.view.backgroundColor = [UIColor whiteColor];
29 // self.view.backgroundColor = [UIColor blackColor]; 29 // self.view.backgroundColor = [UIColor blackColor];
30 30
31 UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(110, 40, 100, 30)]; 31 UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(110, 40, 100, 30)];
32 btn.backgroundColor = [UIColor orangeColor]; 32 btn.backgroundColor = [UIColor orangeColor];
33 [btn setTitle:@"测试入口" forState:UIControlStateNormal]; 33 [btn setTitle:@"测试入口" forState:UIControlStateNormal];
34 [btn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; 34 [btn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
35 btn.titleLabel.font = [UIFont systemFontOfSize:15]; 35 btn.titleLabel.font = [UIFont systemFontOfSize:15];
36 [btn addTarget:self action:@selector(onClickTest) forControlEvents:UIControlEventTouchUpInside]; 36 [btn addTarget:self action:@selector(onClickTest) forControlEvents:UIControlEventTouchUpInside];
37 [self.view addSubview:btn]; 37 [self.view addSubview:btn];
38 38
39 39
40 40
41 UIButton *bindtn = [[UIButton alloc] initWithFrame:CGRectMake(110, 100, 100, 30)]; 41 UIButton *bindtn = [[UIButton alloc] initWithFrame:CGRectMake(110, 100, 100, 30)];
42 bindtn.backgroundColor = [UIColor orangeColor]; 42 bindtn.backgroundColor = [UIColor orangeColor];
43 [bindtn setTitle:@"退出账号" forState:UIControlStateNormal]; 43 [bindtn setTitle:@"退出账号" forState:UIControlStateNormal];
44 [bindtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; 44 [bindtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
45 bindtn.titleLabel.font = [UIFont systemFontOfSize:15]; 45 bindtn.titleLabel.font = [UIFont systemFontOfSize:15];
46 [bindtn addTarget:self action:@selector(onLogoutTest) forControlEvents:UIControlEventTouchUpInside]; 46 [bindtn addTarget:self action:@selector(onLogoutTest) forControlEvents:UIControlEventTouchUpInside];
47 [self.view addSubview:bindtn]; 47 [self.view addSubview:bindtn];
48 48
49 UIButton *payBtn = [[UIButton alloc] initWithFrame:CGRectMake(110, 160, 100, 30)]; 49 UIButton *payBtn = [[UIButton alloc] initWithFrame:CGRectMake(110, 160, 100, 30)];
50 payBtn.backgroundColor = [UIColor orangeColor]; 50 payBtn.backgroundColor = [UIColor orangeColor];
51 [payBtn setTitle:@"支付" forState:UIControlStateNormal]; 51 [payBtn setTitle:@"支付" forState:UIControlStateNormal];
52 [payBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; 52 [payBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
53 payBtn.titleLabel.font = [UIFont systemFontOfSize:15]; 53 payBtn.titleLabel.font = [UIFont systemFontOfSize:15];
54 [payBtn addTarget:self action:@selector(onPayTest) forControlEvents:UIControlEventTouchUpInside]; 54 [payBtn addTarget:self action:@selector(onPayTest) forControlEvents:UIControlEventTouchUpInside];
55 [self.view addSubview:payBtn]; 55 [self.view addSubview:payBtn];
56 56
57 UIButton *iapBtn = [[UIButton alloc] initWithFrame:CGRectMake(110, 220, 100, 30)]; 57 UIButton *iapBtn = [[UIButton alloc] initWithFrame:CGRectMake(110, 220, 100, 30)];
58 iapBtn.backgroundColor = [UIColor orangeColor]; 58 iapBtn.backgroundColor = [UIColor orangeColor];
59 [iapBtn setTitle:@"IAP" forState:UIControlStateNormal]; 59 [iapBtn setTitle:@"IAP" forState:UIControlStateNormal];
60 [iapBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal]; 60 [iapBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
61 iapBtn.titleLabel.font = [UIFont systemFontOfSize:15]; 61 iapBtn.titleLabel.font = [UIFont systemFontOfSize:15];
62 [iapBtn addTarget:self action:@selector(onIapTest) forControlEvents:UIControlEventTouchUpInside]; 62 [iapBtn addTarget:self action:@selector(onIapTest) forControlEvents:UIControlEventTouchUpInside];
63 [self.view addSubview:iapBtn]; 63 [self.view addSubview:iapBtn];
64 64
65 } 65 }
66 66
67 - (UILabel *)resultLabel { 67 - (UILabel *)resultLabel {
68 if (!_resultLabel) { 68 if (!_resultLabel) {
69 _resultLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(self.view.frame) - 90, self.view.frame.size.width, 60)]; 69 _resultLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(self.view.frame) - 90, self.view.frame.size.width, 60)];
70 _resultLabel.backgroundColor = [UIColor clearColor]; 70 _resultLabel.backgroundColor = [UIColor clearColor];
71 _resultLabel.textAlignment = NSTextAlignmentCenter; 71 _resultLabel.textAlignment = NSTextAlignmentCenter;
72 _resultLabel.textColor = [UIColor redColor]; 72 _resultLabel.textColor = [UIColor redColor];
73 _resultLabel.font = [UIFont systemFontOfSize:15]; 73 _resultLabel.font = [UIFont systemFontOfSize:15];
74 _resultLabel.numberOfLines = 4; 74 _resultLabel.numberOfLines = 4;
75 _resultLabel.lineBreakMode = NSLineBreakByWordWrapping; 75 _resultLabel.lineBreakMode = NSLineBreakByWordWrapping;
76 [self.view addSubview:_resultLabel]; 76 [self.view addSubview:_resultLabel];
77 } 77 }
78 78
79 return _resultLabel; 79 return _resultLabel;
80 } 80 }
81 81
82 82
83 - (void)onClickTest { 83 - (void)onClickTest {
84 84
85 [LetsGameAPI instance].appId = @"100";//@"100";//10047 85 [LetsGameAPI instance].appId = @"100";//@"100";//10047
86 [LetsGameAPI instance].appKey = @"b59c21a078fde074a6750e91ed19fb21";//@"f899139df5e1059396431415e770c6dd";//eccd9f7dc92858b741132fda313130cf 86 [LetsGameAPI instance].appKey = @"b59c21a078fde074a6750e91ed19fb21";//@"f899139df5e1059396431415e770c6dd";//eccd9f7dc92858b741132fda313130cf
87 [LetsGameAPI hiddenLogo:YES]; 87 [LetsGameAPI hiddenLogo:YES];
88 [LetsGameAPI disableFB:YES]; 88 // [LetsGameAPI disableFB:YES];
89 [LetsGameAPI disableGoogle:YES]; 89 // [LetsGameAPI disableGoogle:YES];
90 // [LetsGameAPI disableLine:YES]; 90 // [LetsGameAPI disableLine:YES];
91 NSLog(@"sdk version:%@",[[LetsGameAPI instance] version]); 91 NSLog(@"sdk version:%@",[[LetsGameAPI instance] version]);
92 //启用vk登录 92 //启用vk登录
93 VKBridge *vkBridge = [[VKBridge alloc] initWithVKAppId:@"5029792"]; 93 VKBridge *vkBridge = [[VKBridge alloc] initWithVKAppId:@"5029792"];
94 [LetsGameAPI instance].vkBridge = vkBridge; 94 [LetsGameAPI instance].vkBridge = vkBridge;
95 95
96 [LetsGameAPI instance].succBlock = ^(NSString *userId, NSString *sessionKey, LSGAccountType type) { 96 [LetsGameAPI instance].succBlock = ^(NSString *userId, NSString *sessionKey, LSGAccountType type) {
97 self.sessionKey = sessionKey; 97 self.sessionKey = sessionKey;
98 self.resultLabel.text = [NSString stringWithFormat:@"login succ: userId = %@, sessionKey = %@, accountType = %ld", userId, sessionKey, type]; 98 self.resultLabel.text = [NSString stringWithFormat:@"login succ: userId = %@, sessionKey = %@, accountType = %ld", userId, sessionKey, type];
99 }; 99 };
100 [LetsGameAPI instance].dismissBlock = ^() { 100 [LetsGameAPI instance].dismissBlock = ^() {
101 self.resultLabel.text = @"dismiss without login"; 101 self.resultLabel.text = @"dismiss without login";
102 }; 102 };
103 103
104 [[LetsGameAPI instance] showLoginView]; 104 [[LetsGameAPI instance] showLoginView];
105 } 105 }
106 106
107 107
108 - (void)onLogoutTest { 108 - (void)onLogoutTest {
109 [LetsGameAPI instance].appId = @"10056"; 109 [LetsGameAPI instance].appId = @"10056";
110 [LetsGameAPI instance].appKey = @"b59c21a078fde074a6750e91ed19fb21"; 110 [LetsGameAPI instance].appKey = @"b59c21a078fde074a6750e91ed19fb21";
111 [[LetsGameAPI instance] logout]; 111 [[LetsGameAPI instance] logout];
112 112
113 } 113 }
114 114
115 -(void)onPayTest{ 115 -(void)onPayTest{
116 [LetsGameAPI instance].appId = @"10056";//10022 116 [LetsGameAPI instance].appId = @"10056";//10022
117 [LetsGameAPI instance].appKey = @"b59c21a078fde074a6750e91ed19fb21";//93a27b0bd99bac3e68a440b48aa421ab 117 [LetsGameAPI instance].appKey = @"b59c21a078fde074a6750e91ed19fb21";//93a27b0bd99bac3e68a440b48aa421ab
118 NSMutableDictionary *payInfo = [NSMutableDictionary dictionary]; 118 NSMutableDictionary *payInfo = [NSMutableDictionary dictionary];
119 [payInfo setValue:@"100" forKey:@"serverId"]; 119 [payInfo setValue:@"100" forKey:@"serverId"];
120 [payInfo setValue:@"10010" forKey:@"roleId"]; 120 [payInfo setValue:@"10010" forKey:@"roleId"];
121 [payInfo setValue:@"1000" forKey:@"channelId"]; 121 [payInfo setValue:@"1000" forKey:@"channelId"];
122 [payInfo setValue:@"10" forKey:@"amount"]; 122 [payInfo setValue:@"10" forKey:@"amount"];
123 [payInfo setValue:@"ios demo" forKey:@"extraInfo"]; 123 [payInfo setValue:@"ios demo" forKey:@"extraInfo"];
124 [payInfo setValue:@"test" forKey:@"product"]; 124 [payInfo setValue:@"test" forKey:@"product"];
125 [payInfo setValue:@"76c17cc68ff9f7f40bd3d096ccc5600a" forKey:@"sessionKey"]; //self.sessionKey 125 [payInfo setValue:@"76c17cc68ff9f7f40bd3d096ccc5600a" forKey:@"sessionKey"]; //self.sessionKey
126 [[LetsGameAPI instance] pay:payInfo handleCallBack:^{ 126 [[LetsGameAPI instance] pay:payInfo handleCallBack:^{
127 NSLog(@"第三方支付完成"); 127 NSLog(@"第三方支付完成");
128 }]; 128 }];
129 } 129 }
130 130
131 -(void)onIapTest{ 131 -(void)onIapTest{
132 [LetsGameAPI instance].appId = @"10056"; 132 [LetsGameAPI instance].appId = @"10056";
133 [LetsGameAPI instance].appKey = @"b59c21a078fde074a6750e91ed19fb21"; 133 [LetsGameAPI instance].appKey = @"b59c21a078fde074a6750e91ed19fb21";
134 NSMutableDictionary *payInfo = [NSMutableDictionary dictionary]; 134 NSMutableDictionary *payInfo = [NSMutableDictionary dictionary];
135 [payInfo setValue:@"5001" forKey:@"serverId"]; 135 [payInfo setValue:@"5001" forKey:@"serverId"];
136 [payInfo setValue:@"10010" forKey:@"roleId"]; 136 [payInfo setValue:@"10010" forKey:@"roleId"];
137 [payInfo setValue:@"1000" forKey:@"channelId"]; 137 [payInfo setValue:@"1000" forKey:@"channelId"];
138 [payInfo setValue:@"10" forKey:@"amount"]; 138 [payInfo setValue:@"10" forKey:@"amount"];
139 [payInfo setValue:@"ios demo" forKey:@"extraInfo"]; 139 [payInfo setValue:@"ios demo" forKey:@"extraInfo"];
140 [payInfo setValue:@"test.product.1" forKey:@"product"]; 140 [payInfo setValue:@"test.product.1" forKey:@"product"];
141 [[LetsGameAPI instance] iap:payInfo forUser:@"" succCallback:^(NSString *orderId) { 141 [[LetsGameAPI instance] iap:payInfo forUser:@"" succCallback:^(NSString *orderId) {
142 //注意测试仅仅是通知客户端成功,但是还需要向服务器请求验证是否成功,以服务端验证为准 142 //注意测试仅仅是通知客户端成功,但是还需要向服务器请求验证是否成功,以服务端验证为准
143 NSLog(@"IAP completed orderId of Gumptech:%@",orderId); 143 NSLog(@"IAP completed orderId of Gumptech:%@",orderId);
144 } failCallback:^(NSString *orderId) { 144 } failCallback:^(NSString *orderId) {
145 NSLog(@"IAP file orderId of Gumptech:%@",orderId); 145 NSLog(@"IAP file orderId of Gumptech:%@",orderId);
146 }]; 146 }];
147 } 147 }
148 148
149 149
150 - (BOOL)shouldAutorotate { 150 - (BOOL)shouldAutorotate {
151 return YES; 151 return YES;
152 } 152 }
153 153
154 -(UIInterfaceOrientationMask)supportedInterfaceOrientations{ 154 -(UIInterfaceOrientationMask)supportedInterfaceOrientations{
155 return UIInterfaceOrientationMaskAll; 155 return UIInterfaceOrientationMaskAll;
156 } 156 }
157 157
158 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { 158 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
159 return YES; 159 return YES;
160 } 160 }
161 161
162 @end 162 @end
163 163
ios/GameSDKDemo/letsgameDemo/letsgameDemo-Info.plist
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 2 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3 <plist version="1.0"> 3 <plist version="1.0">
4 <dict> 4 <dict>
5 <key>CFBundleDevelopmentRegion</key> 5 <key>CFBundleDevelopmentRegion</key>
6 <string>en</string> 6 <string>en</string>
7 <key>CFBundleDisplayName</key> 7 <key>CFBundleDisplayName</key>
8 <string>${PRODUCT_NAME}</string> 8 <string>${PRODUCT_NAME}</string>
9 <key>CFBundleExecutable</key> 9 <key>CFBundleExecutable</key>
10 <string>${EXECUTABLE_NAME}</string> 10 <string>${EXECUTABLE_NAME}</string>
11 <key>CFBundleIdentifier</key> 11 <key>CFBundleIdentifier</key>
12 <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> 12 <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
13 <key>CFBundleInfoDictionaryVersion</key> 13 <key>CFBundleInfoDictionaryVersion</key>
14 <string>6.0</string> 14 <string>6.0</string>
15 <key>CFBundleName</key> 15 <key>CFBundleName</key>
16 <string>${PRODUCT_NAME}</string> 16 <string>${PRODUCT_NAME}</string>
17 <key>CFBundlePackageType</key> 17 <key>CFBundlePackageType</key>
18 <string>APPL</string> 18 <string>APPL</string>
19 <key>CFBundleShortVersionString</key> 19 <key>CFBundleShortVersionString</key>
20 <string>1.0.1</string> 20 <string>1.0.1</string>
21 <key>CFBundleSignature</key> 21 <key>CFBundleSignature</key>
22 <string>????</string> 22 <string>????</string>
23 <key>CFBundleURLTypes</key> 23 <key>CFBundleURLTypes</key>
24 <array> 24 <array>
25 <dict> 25 <dict>
26 <key>CFBundleURLSchemes</key> 26 <key>CFBundleURLSchemes</key>
27 <array> 27 <array>
28 <string>fb1401636950118536</string> 28 <string>fb1401636950118536</string>
29 </array> 29 </array>
30 </dict> 30 </dict>
31 <dict> 31 <dict>
32 <key>CFBundleURLName</key> 32 <key>CFBundleURLName</key>
33 <string>vk5029792</string> 33 <string>vk5029792</string>
34 <key>CFBundleURLSchemes</key> 34 <key>CFBundleURLSchemes</key>
35 <array> 35 <array>
36 <string>vk5029792</string> 36 <string>vk5029792</string>
37 </array> 37 </array>
38 </dict> 38 </dict>
39 <dict> 39 <dict>
40 <key>CFBundleTypeRole</key> 40 <key>CFBundleTypeRole</key>
41 <string>Editor</string> 41 <string>Editor</string>
42 <key>CFBundleURLSchemes</key> 42 <key>CFBundleURLSchemes</key>
43 <array> 43 <array>
44 <string>wxd0242de3794f1016</string> 44 <string>wxd0242de3794f1016</string>
45 </array> 45 </array>
46 </dict> 46 </dict>
47 </array> 47 </array>
48 <key>CFBundleVersion</key> 48 <key>CFBundleVersion</key>
49 <string>1.1.1</string> 49 <string>1.1.1</string>
50 <key>FacebookAppID</key> 50 <key>FacebookAppID</key>
51 <string>1401636950118536</string> 51 <string>1401636950118536</string>
52 <key>FacebookDisplayName</key> 52 <key>FacebookDisplayName</key>
53 <string>letsgameDemo</string> 53 <string>letsgameDemo</string>
54 <key>LSApplicationQueriesSchemes</key> 54 <key>LSApplicationQueriesSchemes</key>
55 <array> 55 <array>
56 <string>weixin</string> 56 <string>weixin</string>
57 <string>wechat</string> 57 <string>wechat</string>
58 </array> 58 </array>
59 <key>LSRequiresIPhoneOS</key> 59 <key>LSRequiresIPhoneOS</key>
60 <true/> 60 <true/>
61 <key>NSAppTransportSecurity</key> 61 <key>NSAppTransportSecurity</key>
62 <dict> 62 <dict>
63 <key>NSAllowsArbitraryLoads</key> 63 <key>NSAllowsArbitraryLoads</key>
64 <false/> 64 <false/>
65 </dict> 65 </dict>
66 <key>UIRequiredDeviceCapabilities</key> 66 <key>UIRequiredDeviceCapabilities</key>
67 <array> 67 <array>
68 <string>armv7</string> 68 <string>armv7</string>
69 </array> 69 </array>
70 <key>UIStatusBarHidden</key> 70 <key>UIStatusBarHidden</key>
71 <true/> 71 <true/>
72 <key>UISupportedInterfaceOrientations</key> 72 <key>UISupportedInterfaceOrientations</key>
73 <array> 73 <array>
74 <string>UIInterfaceOrientationLandscapeLeft</string> 74 <string>UIInterfaceOrientationPortrait</string>
75 <string>UIInterfaceOrientationLandscapeRight</string>
76 </array> 75 </array>
77 </dict> 76 </dict>
78 </plist> 77 </plist>
79 78
ios/GameSDKResources.bundle/en.strings
1 "user_name_hint" = "Email"; 1 "user_name_hint" = "Account";
2 "password_hint" = "Password"; 2 "password_hint" = "Password";
3 "quick_play" = "Play as Guest"; 3 "quick_play" = "Guest login";
4 "login" = "Login"; 4 "login" = "Log In";
5 "gump_login" = "Login"; 5 "gump_login" = "Login";
6 "signup" = "Sign up"; 6 "signup" = "Sign up";
7 "bind" = "Bind your email"; 7 "bind" = "Bind your email";
8 "loading" = "Loading"; 8 "loading" = "Loading";
9 "cancel" = "Cancel"; 9 "cancel" = "Cancel";
10 "ok" = "OK"; 10 "ok" = "OK";
11 "illegal_uname_tip" = "Invalid Email"; 11 "illegal_uname_tip" = "Invalid Email";
12 "illegal_pwd_tip" = "Invalid Password (6-20 characters)"; 12 "illegal_pwd_tip" = "Invalid Password (6-20 characters)";
13 "illegal_user_exist" = "Email has already been used"; 13 "illegal_user_exist" = "Email has already been used";
14 "illegal_pwd_invalid" = "Incorrect password. Please try again."; 14 "illegal_pwd_invalid" = "Password error";
15 "illegal_user_not_exist" = "Invalid Email"; 15 "illegal_user_not_exist" = "Invalid Email";
16 "invalid_email" = "Please input your email"; 16 "invalid_email" = "Please input your email";
17 "login_fail" = "Login Failed"; 17 "login_fail" = "Login Failed";
18 "signup_fail" = "Signup Failed"; 18 "signup_fail" = "Signup Failed";
19 "bind_fail" = "Bind Failed"; 19 "bind_fail" = "Bind Failed";
20 "switch"="Switch Account"; 20 "switch"="Switch Account";
21 "change_password" = "Change Password"; 21 "change_password" = "Modify Password";
22 "current_password" = "Current Password"; 22 "current_password" = "Current Password";
23 "change_password_notice" = “Current passeord isn't required when reset password."; 23 "change_password_notice" = “Current passeord isn't required when reset password.";
24 "new_password" = "New Password"; 24 "new_password" = "New Password";
25 "Reset" = "Reset"; 25 "Reset" = "Forget Password? Touch this";
26 "Confirm" = "Confirm"; 26 "Confirm" = "Confirm";
27 "Succeed" = "Succeed"; 27 "Succeed" = "Succeed";
28 "reset_fail" = "Reset failed, please contact customer service"; 28 "reset_fail" = "Reset failed, please contact customer service";
29 "reset_success" = "An Email has been sent to you, please follow the instructions in Email.";
29 "reset_success" = "Verified email has been sent. Please reset Password according to the email";
30 "forget_change_password" = "Modify/Forget Password";
31 "other_login_style" = "Others";
32 "account_pwd_invalid" = "Please input both account and password";
33 "new_old_password_diff" = "Password mismatch";
34 "Confirm_password" = "Confirm";
35 "input_new_pwd" = "Please input new password";
36 "back" = "Back";
ios/GameSDKResources.bundle/images/em@2x.png

1.32 KB

ios/GameSDKResources.bundle/images/face@2x.png

1.25 KB

ios/GameSDKResources.bundle/images/google@2x.png

1.75 KB

ios/GameSDKResources.bundle/images/line@2x.png

2.14 KB

ios/GameSDKResources.bundle/images/pwd@2x.png

1.14 KB

ios/GameSDKResources.bundle/images/split@2x.png

461 Bytes

ios/GameSDKResources.bundle/images/tri@2x.png

550 Bytes

ios/GameSDKResources.bundle/images/vk@2x.png

1.83 KB

ios/GameSDKResources.bundle/images/we@2x.png

2.25 KB

ios/GameSDKResources.bundle/th.strings
1 "user_name_hint" = "อีเมลล์"; 1 "user_name_hint" = "ชื่อบัญชี";
2 "password_hint" = "พาสเวิร์ด"; 2 "password_hint" = "พาสเวิร์ด";
3 "quick_play" = "การเล่นของผู้เข้าพัก"; 3 "quick_play" = "บัญชีนักท่องเที่ยว";
4 "quick_login" = "เริ่มเล่น"; 4 "quick_login" = "เริ่มเล่น";
5 "login" = "ล็อกอิน"; 5 "login" = "ล็อคอินชื่อบัญชีรหัสผ่าน";
6 "gump_login" = "Login"; 6 "gump_login" = "ล็อคอิน";
7 "signup" = "ลงทะเบียน"; 7 "signup" = "ลงทะเบียน";
8 "bind" = "ผูกอีเมลล์"; 8 "bind" = "ผูกอีเมลล์";
9 "loading" = "กำลังโหลด"; 9 "loading" = "กำลังโหลด";
10 "illegal_uname_tip" = "อีเมลล์ไม่ถูกต้อง"; 10 "illegal_uname_tip" = "อีเมลล์ไม่ถูกต้อง";
11 "illegal_pwd_tip" = "พาสเวิร์ดไม่ถูกต้อง(6-20 ตัวอักษร)"; 11 "illegal_pwd_tip" = "พาสเวิร์ดไม่ถูกต้อง(6-20 ตัวอักษร)";
12 "illegal_user_exist" = "อีเมลล์นี้ได้ถูกใช้แล้ว"; 12 "illegal_user_exist" = "อีเมลล์นี้ได้ถูกใช้แล้ว";
13 "illegal_pwd_invalid" = "พาสเวิร์ดไม่ถูกต้อง, โปรดลองใหม่อีกครั้ง"; 13 "account_pwd_invalid" = "ชื่อบัญชีและรหัสผ่านห้ามเว้นว่าง";
14 "illegal_user_not_exist" = "อีเมลล์ไม่ถูกต้อง"; 14 "illegal_user_not_exist" = "อีเมลล์ไม่ถูกต้อง";
15 "invalid_email" = "ใส่อีเมลล์ของคุณ"; 15 "invalid_email" = "ใส่อีเมลล์ของคุณ";
16 "login_fail" = "ล็อกอินผิดพลาด"; 16 "login_fail" = "ล็อกอินผิดพลาด";
17 "signup_fail" = "ลงทะเบียนไม่สำเร็จ"; 17 "signup_fail" = "ลงทะเบียนไม่สำเร็จ";
18 "bind_fail" = "ผูกอีเมลล์ไม่สำเร็จ"; 18 "bind_fail" = "ผูกอีเมลล์ไม่สำเร็จ";
19 "change_password" = "แก้ไขพาสเวิร์ด"; 19 "change_password" = "แก้ไขรหัสผ่าน";
20 "current_password" = "พาสเวิร์ดปัจจุบัน"; 20 "current_password" = "พาสเวิร์ดปัจจุบัน";
21 "change_password_notice" = "ไม่สามารถตั้งพาสเวิร์ดซ้ำกับพาสเวิร์ดปัจจุบันได้."; 21 "change_password_notice" = "ไม่สามารถตั้งพาสเวิร์ดซ้ำกับพาสเวิร์ดปัจจุบันได้.";
22 "new_password" = "พาสเวิร์ดใหม่"; 22 "new_password" = "พาสเวิร์ดใหม่";
23 "Reset" = "ตั้งพาสเวิร์ด"; 23 "Reset" = "ลืมรหัสผ่าน?คลิกรีเซ็ตรหัสผ่าน";
24 "Confirm" = "ยืนยัน"; 24 "Confirm" = "ยืนยัน";
25 "Succeed" = "แก้ไขสำเร็จ"; 25 "Succeed" = "แก้ไขสำเร็จ";
26 "reset_fail" = "แก้ไขล้มเหลว,กรุณาติดต่อแอดมิน"; 26 "reset_fail" = "แก้ไขล้มเหลว,กรุณาติดต่อแอดมิน";
27 "reset_success" = "ระบบได้แจ้งข้อมูลการเปลี่ยนพาสเวิร์ดไปยังอีเมลล์สำรอง กรุณาทำตามขั้นตอนในอีเมลล์."; 27 "reset_success" = "ส่งอีเมลล์ยืนยันแล้ว กรุณาทำตามขั้นตอนที่ระบุในอีเมลล์เพื่อรีเซ็ตรหัสผ่าน";
28 "forget_change_password" = "แก้ไข/ลืมรหัสผ่าน";
29 "other_login_style" = "ล็อคอินช่องทางอื่น";
30 "new_old_password_diff" = "รหัสผ่านไม่เหมือนกัน";
31 "Confirm_password" = "ยืนยันรหัสผ่าน";
32 "input_new_pwd" = "กรุณากรอกรหัสผ่านใหม่";
33 "back" = "ย้อนกลับ";
28 34
ios/GameSDKResources.bundle/zh-Hans.strings
1 "user_name_hint" = "邮箱"; 1 "user_name_hint" = "账号";
2 "password_hint" = "密码"; 2 "password_hint" = "密码";
3 "quick_login" = "一键进入"; 3 "quick_login" = "一键进入";
4 "quick_play" = "Play as Guest"; 4 "quick_play" = "游客登录";
5 "gump_login" = "Login"; 5 "gump_login" = "登录";
6 "login" = "登陆"; 6 "login" = "账号密码登录";
7 "loginFacebook" = "登录Facebook"; 7 "loginFacebook" = "登录Facebook";
8 "signup" = "注册"; 8 "signup" = "注册";
9 "bind" = "绑定邮箱"; 9 "bind" = "绑定邮箱";
10 "loading" = "加载中……"; 10 "loading" = "加载中……";
11 "illegal_uname_tip" = "邮箱不存在"; 11 "illegal_uname_tip" = "邮箱不存在";
12 "illegal_pwd_tip" = "密码格式不正确 (6–20字符)"; 12 "illegal_pwd_tip" = "密码格式不正确 (6–20字符)";
13 "illegal_user_exist" = "邮箱已注册"; 13 "illegal_user_exist" = "邮箱已注册";
14 "illegal_pwd_invalid" = "密码不正确,请重试"; 14 "illegal_pwd_invalid" = "密码错误";
15 "illegal_user_not_exist" = "邮箱格式不正确"; 15 "illegal_user_not_exist" = "邮箱格式不正确";
16 "invalid_email" = "请输入正确的邮箱"; 16 "invalid_email" = "请输入正确的邮箱";
17 "login_fail" = "登录失败"; 17 "login_fail" = "登录失败";
18 "signup_fail" = "注册失败"; 18 "signup_fail" = "注册失败";
19 "bind_fail" = "绑定失败"; 19 "bind_fail" = "绑定失败";
20 "GumptechLogin" = "甘普登录"; 20 "GumptechLogin" = "甘普登录";
21 "switch" = "切换账户"; 21 "switch" = "切换账户";
22 "change_password" = "修改密码"; 22 "change_password" = "修改密码?";
23 "current_password" = "当前密码"; 23 "current_password" = "当前密码";
24 "change_password_notice" = "重置密码时可不填写当前密码"; 24 "change_password_notice" = "重置密码时可不填写当前密码";
25 "new_password" = "新密码"; 25 "new_password" = "新密码";
26 "Reset" = "重置"; 26 "Reset" = "忘记密码?点此重置";
27 "Confirm" = "确定修改"; 27 "Confirm" = "确定";
28 "Succeed" = "修改成功"; 28 "Succeed" = "修改成功";
29 "reset_fail" = "修改失败,请与客服联系"; 29 "reset_fail" = "修改失败,请与客服联系";
30 "reset_success" = "密码重置邮件已发送到指定账户邮箱,请按邮件内的提示操作"; 30 "reset_success" = "验证邮件已发送,请按照邮件提示进行密码重置";
31 "other_login_style" = "其他登录方式";
32 "account_pwd_invalid" = "账号和密码不能为空";
33 "new_old_password_diff" = "密码不一致";
34 "Confirm_password" = "确认密码";
35 "forget_change_password" = "修改/忘记密码?";
36 "input_new_pwd" = "请输入新密码";
37 "back" = "返回";
31 38
ios/GameSDKResources.bundle/zh-Hant.strings
1 "user_name_hint" = "郵箱"; 1 "user_name_hint" = "帳號";
2 "password_hint" = "密碼"; 2 "password_hint" = "密碼";
3 "quick_login" = "一鍵進入"; 3 "quick_login" = "一鍵進入";
4 "quick_play" = "Play as Guest"; 4 "quick_play" = "遊客登陸";
5 "gump_login" = "Login"; 5 "gump_login" = "登錄";
6 "login" = "登陸"; 6 "login" = "帳號密碼登錄";
7 "signup" = "註冊"; 7 "signup" = "註冊";
8 "bind" = "綁定郵箱"; 8 "bind" = "綁定郵箱";
9 "loading" = "加載中……"; 9 "loading" = "加載中……";
10 "illegal_uname_tip" = "郵箱不存在"; 10 "illegal_uname_tip" = "郵箱不存在";
11 "illegal_pwd_tip" = "密碼格式不爭取 (6–20字符)"; 11 "illegal_pwd_tip" = "密碼格式不爭取 (6–20字符)";
12 "illegal_user_exist" = "郵箱已註冊"; 12 "illegal_user_exist" = "郵箱已註冊";
13 "illegal_pwd_invalid" = "密碼不正確,請重試"; 13 "illegal_pwd_invalid" = "密碼錯誤";
14 "illegal_user_not_exist" = "郵箱格式不正確"; 14 "illegal_user_not_exist" = "郵箱格式不正確";
15 "invalid_email" = "請輸入正確的郵箱"; 15 "invalid_email" = "請輸入正確的郵箱";
16 "login_fail" = "登陸失敗"; 16 "login_fail" = "登陸失敗";
17 "signup_fail" = "註冊失敗"; 17 "signup_fail" = "註冊失敗";
18 "bind_fail" = "綁定失敗"; 18 "bind_fail" = "綁定失敗";
19 "GumptechLogin" = "甘普登錄"; 19 "GumptechLogin" = "甘普登錄";
20 "switch" = "切換賬號"; 20 "switch" = "切換賬號";
21 "change_password" = "修改密碼"; 21 "change_password" = "修改密碼";
22 "current_password" = "當前密碼"; 22 "current_password" = "當前密碼";
23 "change_password_notice" = "重置密碼時可不填寫當前密碼"; 23 "change_password_notice" = "重置密碼時可不填寫當前密碼";
24 "new_password" = "新密碼"; 24 "new_password" = "新密碼";
25 "Reset" = "重置"; 25 "Reset" = "忘記密碼點此重置";
26 "Confirm" = "確定修改"; 26 "Confirm" = "確定";
27 "Succeed" = "修改成功"; 27 "Succeed" = "修改成功";
28 "reset_fail" = "修改失败,請與客服聯系"; 28 "reset_fail" = "修改失败,請與客服聯系";
29 "reset_success" = "密碼重置郵件已發送到指定賬戶郵箱,請按郵件內的提示操作";
29 "reset_success" = "驗證郵件已發送,請按照郵件提示進行重置";
30 "other_login_style" = "其他登錄方式";
31 "account_pwd_invalid" = "帳號或密碼不能為空";
32 "new_old_password_diff" = "密碼不一致";
33 "Confirm_password" = "確認密碼";
34 "forget_change_password" = "修改/忘記密碼";
35 "input_new_pwd" = "請輸入新密碼";
36 "back" = "返回";