增加内购的native方法
This commit is contained in:
parent
526cc133ad
commit
9e1be3d127
@ -1,3 +1,4 @@
|
||||
#include <cmath>
|
||||
#pragma once
|
||||
|
||||
struct Quaternion4f
|
||||
|
@ -13,6 +13,9 @@ NS_ASSUME_NONNULL_BEGIN
|
||||
+(instancetype) shareInstance;
|
||||
- (NSString *) getGameData;
|
||||
-(void) setGameData:(NSString *) data;
|
||||
|
||||
- (BOOL) isFromJS;
|
||||
- (void) setFromJS:(BOOL) d;
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
|
@ -10,6 +10,7 @@
|
||||
@implementation GlobalData
|
||||
static GlobalData *_instance = nil;
|
||||
NSString *_gamedata = nil;
|
||||
bool _fromJS = true;
|
||||
|
||||
+(instancetype) shareInstance
|
||||
{
|
||||
@ -40,4 +41,11 @@ NSString *_gamedata = nil;
|
||||
_gamedata = data;
|
||||
}
|
||||
|
||||
- (BOOL) isFromJS {
|
||||
return _fromJS;
|
||||
}
|
||||
|
||||
- (void) setFromJS:( BOOL ) d {
|
||||
_fromJS = d;
|
||||
}
|
||||
@end
|
||||
|
@ -16,6 +16,7 @@
|
||||
#include <string>
|
||||
#import "NSString+Customer.h"
|
||||
#include "JcWallet.h"
|
||||
#import "GlobalData.h"
|
||||
|
||||
static Utilities *utility = nil;
|
||||
|
||||
@ -200,4 +201,43 @@ static Utilities *utility = nil;
|
||||
// self.segmentedControl.selectedSegmentIndex = ParentViewControllerSegmentPurchases;
|
||||
}
|
||||
|
||||
extern "C" void nativeQueryProducts(const char *funid, const char *skuListStr) {
|
||||
NSString *nfunid = [NSString stringWithCString:funid encoding:NSUTF8StringEncoding];
|
||||
NSString *nParams = [NSString stringWithCString:skuListStr encoding:NSUTF8StringEncoding];
|
||||
dispatch_async(dispatch_get_main_queue(), ^{
|
||||
UIWindow* window = [[[UIApplication sharedApplication] delegate] window];
|
||||
[window.rootViewController queryProducts:nfunid products: nParams];
|
||||
});
|
||||
}
|
||||
|
||||
extern "C" void nativeBuyProduct(const char *funid, const char *productId, const char *orderId) {
|
||||
[[GlobalData shareInstance] setFromJS:false];
|
||||
NSString *nfunid = [NSString stringWithCString:funid encoding:NSUTF8StringEncoding];
|
||||
NSString *nParam0 = [NSString stringWithCString:productId encoding:NSUTF8StringEncoding];
|
||||
NSString *nParam1 = [NSString stringWithCString:orderId encoding:NSUTF8StringEncoding];
|
||||
dispatch_async(dispatch_get_main_queue(), ^{
|
||||
UIWindow* window = [[[UIApplication sharedApplication] delegate] window];
|
||||
[window.rootViewController beginBuy:nfunid productId: nParam0 orderId:nParam1];
|
||||
});
|
||||
}
|
||||
|
||||
extern "C" void nativeQueryPurchase(const char *funid) {
|
||||
[[GlobalData shareInstance] setFromJS:false];
|
||||
NSString *nfunid = [NSString stringWithCString:funid encoding:NSUTF8StringEncoding];
|
||||
dispatch_async(dispatch_get_main_queue(), ^{
|
||||
UIWindow* window = [[[UIApplication sharedApplication] delegate] window];
|
||||
[window.rootViewController queryPurchase:nfunid];
|
||||
});
|
||||
}
|
||||
|
||||
extern "C" void nativeFinishTransaction(const char *funid, const char *transactionId) {
|
||||
[[GlobalData shareInstance] setFromJS:false];
|
||||
NSString *nfunid = [NSString stringWithCString:funid encoding:NSUTF8StringEncoding];
|
||||
NSString *nTransactionId = [NSString stringWithCString:transactionId encoding:NSUTF8StringEncoding];
|
||||
dispatch_async(dispatch_get_main_queue(), ^{
|
||||
UIWindow* window = [[[UIApplication sharedApplication] delegate] window];
|
||||
[window.rootViewController finishTransaction:nfunid transactionId: nTransactionId];
|
||||
});
|
||||
}
|
||||
|
||||
@end
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include "cocos/scripting/js-bindings/manual/jsb_global.h"
|
||||
#import <LocalAuthentication/LocalAuthentication.h>
|
||||
#import "NSDictionary+Customer.h"
|
||||
#import "GlobalData.h"
|
||||
@import SafariServices;
|
||||
|
||||
@import FBSDKLoginKit;
|
||||
@ -285,6 +286,7 @@ static WebPageViewController *webpageVC = nil;
|
||||
|
||||
std::string methodName = "nativeCallBack";
|
||||
NSMutableDictionary *json = [[NSMutableDictionary alloc] init];
|
||||
json[@"funid"] = funid;
|
||||
if (hasErr) {
|
||||
json[@"errcode"] = @1;
|
||||
json[@"errmessage"] = dataStr;
|
||||
@ -308,8 +310,11 @@ static WebPageViewController *webpageVC = nil;
|
||||
std::string sfunid = std::string([funid UTF8String], [funid lengthOfBytesUsingEncoding:NSUTF8StringEncoding]);
|
||||
std::string sparam = std::string([jsonString UTF8String], [jsonString lengthOfBytesUsingEncoding:NSUTF8StringEncoding]);
|
||||
std::vector<std::string> sparams = {sparam};
|
||||
cocos2d::nativeCallJS(sfunid, methodName, sparams);
|
||||
// cocos2d::nativeCallBack(sfunid.c_str(), methodName.c_str(), sparam.c_str());
|
||||
if ([[GlobalData shareInstance] isFromJS]) {
|
||||
cocos2d::nativeCallJS(sfunid, methodName, sparams);
|
||||
} else {
|
||||
UnitySendMessage("WalletPanel1", "onNativeCallback", sparam.c_str());
|
||||
}
|
||||
}
|
||||
|
||||
#pragma mark -- show webpage
|
||||
|
@ -141,7 +141,7 @@ BOOL __swizzled_didReceiveRemoteNotification(id self, SEL _cmd, UIApplication* a
|
||||
[[AppsFlyerLib shared] handlePushNotification:userInfo];
|
||||
|
||||
if(__original_didReceiveRemoteNotification_Imp){
|
||||
return ((BOOL(*)(id, SEL, UIApplication*, NSDictionary*, (UIBackgroundFetchResult)))__original_didReceiveRemoteNotification_Imp)(self, _cmd, application, userInfo, nil);
|
||||
return ((BOOL(*)(id, SEL, UIApplication*, NSDictionary*, int(UIBackgroundFetchResult)))__original_didReceiveRemoteNotification_Imp)(self, _cmd, application, userInfo, nil);
|
||||
}
|
||||
return YES;
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -14,42 +14,10 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "157"
|
||||
endingLineNumber = "157"
|
||||
startingLineNumber = "158"
|
||||
endingLineNumber = "158"
|
||||
landmarkName = "-signWithTikTok:"
|
||||
landmarkType = "7">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "4604224B-AA3B-4B3F-92B1-11913FF3B5D7 - 1444efee473fa6f6"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "__43-[UIViewController(Wallet) signWithTikTok:]_block_invoke"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "153"
|
||||
endingLineNumber = "153"
|
||||
offsetFromSymbolStart = "124">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "4604224B-AA3B-4B3F-92B1-11913FF3B5D7 - 1444efee473fa629"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "__43-[UIViewController(Wallet) signWithTikTok:]_block_invoke"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "154"
|
||||
endingLineNumber = "154"
|
||||
offsetFromSymbolStart = "152">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
@ -66,38 +34,6 @@
|
||||
endingLineNumber = "111"
|
||||
landmarkName = "-userContentController:didReceiveScriptMessage:"
|
||||
landmarkType = "7">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "500A79D8-4B4E-475A-B444-78E2938D7FB6 - 17324010e7a1e6b2"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController userContentController:didReceiveScriptMessage:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "69"
|
||||
endingLineNumber = "69"
|
||||
offsetFromSymbolStart = "496">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "500A79D8-4B4E-475A-B444-78E2938D7FB6 - 17324010e7ae183e"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController userContentController:didReceiveScriptMessage:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "81"
|
||||
endingLineNumber = "81"
|
||||
offsetFromSymbolStart = "564">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
@ -114,38 +50,6 @@
|
||||
endingLineNumber = "167"
|
||||
landmarkName = "-showMsg:"
|
||||
landmarkType = "7">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "A74661E7-4009-490E-A718-E0A67E91B650 - 17324010e7ae1113"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController userContentController:didReceiveScriptMessage:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "134"
|
||||
endingLineNumber = "134"
|
||||
offsetFromSymbolStart = "6416">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "A74661E7-4009-490E-A718-E0A67E91B650 - 17324010e7ae1134"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController userContentController:didReceiveScriptMessage:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "135"
|
||||
endingLineNumber = "135"
|
||||
offsetFromSymbolStart = "6488">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
@ -162,38 +66,6 @@
|
||||
endingLineNumber = "166"
|
||||
landmarkName = "-showMsg:"
|
||||
landmarkType = "7">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "B7D97674-91C4-4996-8008-86EE56573B79 - 17324010e7ae1134"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController userContentController:didReceiveScriptMessage:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "135"
|
||||
endingLineNumber = "135"
|
||||
offsetFromSymbolStart = "6460">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "B7D97674-91C4-4996-8008-86EE56573B79 - 17324010e7ae1113"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController userContentController:didReceiveScriptMessage:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "134"
|
||||
endingLineNumber = "134"
|
||||
offsetFromSymbolStart = "6444">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
@ -232,7 +104,7 @@
|
||||
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
||||
<BreakpointContent
|
||||
uuid = "45093B72-466E-44C8-BF27-A1DF8504BC27"
|
||||
shouldBeEnabled = "Yes"
|
||||
shouldBeEnabled = "No"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
filePath = "Classes_cocos/WebPageViewController.mm"
|
||||
@ -242,98 +114,6 @@
|
||||
endingLineNumber = "212"
|
||||
landmarkName = "-beginScanQRCode:title:"
|
||||
landmarkType = "7">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "45093B72-466E-44C8-BF27-A1DF8504BC27 - 7f1818c9e9db3648"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController receiveCallPageNotification:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "210"
|
||||
endingLineNumber = "210"
|
||||
offsetFromSymbolStart = "524">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "45093B72-466E-44C8-BF27-A1DF8504BC27 - bd115d11bebb99e7"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController receiveProxyCBNotification:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "210"
|
||||
endingLineNumber = "210"
|
||||
offsetFromSymbolStart = "296">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "45093B72-466E-44C8-BF27-A1DF8504BC27 - bd115d11bebb99e7"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController receiveProxyCBNotification:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "210"
|
||||
endingLineNumber = "210"
|
||||
offsetFromSymbolStart = "340">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "45093B72-466E-44C8-BF27-A1DF8504BC27 - cd20625e4c015fca"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController beginScanQRCode:title:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "211"
|
||||
endingLineNumber = "211"
|
||||
offsetFromSymbolStart = "156">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "45093B72-466E-44C8-BF27-A1DF8504BC27 - cd20625e4c015f88"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController beginScanQRCode:title:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "213"
|
||||
endingLineNumber = "213"
|
||||
offsetFromSymbolStart = "156">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "45093B72-466E-44C8-BF27-A1DF8504BC27 - cd20625e4c015f88"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController beginScanQRCode:title:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "213"
|
||||
endingLineNumber = "213"
|
||||
offsetFromSymbolStart = "592">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
@ -346,8 +126,8 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "221"
|
||||
endingLineNumber = "221"
|
||||
startingLineNumber = "222"
|
||||
endingLineNumber = "222"
|
||||
landmarkName = "-signWithOAuth:jsondata:"
|
||||
landmarkType = "7">
|
||||
</BreakpointContent>
|
||||
@ -356,7 +136,7 @@
|
||||
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
||||
<BreakpointContent
|
||||
uuid = "7964288C-6751-40EE-9F34-F93D40ABABF0"
|
||||
shouldBeEnabled = "No"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
filePath = "Classes_cocos/WebPageViewController.mm"
|
||||
@ -414,83 +194,6 @@
|
||||
endingLineNumber = "66"
|
||||
landmarkName = "-viewDidLoad"
|
||||
landmarkType = "7">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "6374755A-2BF7-43A6-B187-57EE5F578460 - 6c111bbdbb09e5d9"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController viewDidLoad]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "51"
|
||||
endingLineNumber = "51"
|
||||
offsetFromSymbolStart = "704">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "6374755A-2BF7-43A6-B187-57EE5F578460 - 6c111bbdbb09e5d9"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController viewDidLoad]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "51"
|
||||
endingLineNumber = "51"
|
||||
offsetFromSymbolStart = "604">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "6374755A-2BF7-43A6-B187-57EE5F578460 - 6c111bbdbb09e5d9"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController viewDidLoad]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "51"
|
||||
endingLineNumber = "51"
|
||||
offsetFromSymbolStart = "788">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "6374755A-2BF7-43A6-B187-57EE5F578460 - 6c111bbdbb09e5d9"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController viewDidLoad]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "51"
|
||||
endingLineNumber = "51"
|
||||
offsetFromSymbolStart = "792">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "6374755A-2BF7-43A6-B187-57EE5F578460 - 6c111bbdbb09e69f"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[WebPageViewController viewDidLoad]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/WebPageViewController.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "57"
|
||||
endingLineNumber = "57"
|
||||
offsetFromSymbolStart = "932">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
@ -539,38 +242,6 @@
|
||||
endingLineNumber = "1132"
|
||||
landmarkName = "XMLHttpRequest_setResponseType(s)"
|
||||
landmarkType = "9">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "B63977ED-31BC-4F0A-B2EC-A670225F26CC - 6002f8acdb143fdc"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "XMLHttpRequest_setResponseType(se::State&)"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/crypto/cocos_js/cocos/scripting/js-bindings/manual/jsb_xmlhttprequest.cpp"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "1126"
|
||||
endingLineNumber = "1126"
|
||||
offsetFromSymbolStart = "1572">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "B63977ED-31BC-4F0A-B2EC-A670225F26CC - 6002f8acdb143ea6"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "XMLHttpRequest_setResponseType(se::State&)"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/crypto/cocos_js/cocos/scripting/js-bindings/manual/jsb_xmlhttprequest.cpp"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "1132"
|
||||
endingLineNumber = "1132"
|
||||
offsetFromSymbolStart = "1188">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
@ -699,38 +370,6 @@
|
||||
endingLineNumber = "385"
|
||||
landmarkName = "XMLHttpRequest::getHeader(header)"
|
||||
landmarkType = "7">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "DC5DADD6-5C26-452C-A831-460B68354E9F - bd2010ad56aea0f7"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "XMLHttpRequest::getHeader(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/crypto/cocos_js/cocos/scripting/js-bindings/manual/jsb_xmlhttprequest.cpp"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "385"
|
||||
endingLineNumber = "385"
|
||||
offsetFromSymbolStart = "1316">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "DC5DADD6-5C26-452C-A831-460B68354E9F - bd2010ad56aea0f7"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "XMLHttpRequest::getHeader(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> const&)"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/crypto/cocos_js/cocos/scripting/js-bindings/manual/jsb_xmlhttprequest.cpp"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "385"
|
||||
endingLineNumber = "385"
|
||||
offsetFromSymbolStart = "1312">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
@ -807,42 +446,10 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "220"
|
||||
endingLineNumber = "220"
|
||||
startingLineNumber = "221"
|
||||
endingLineNumber = "221"
|
||||
landmarkName = "-signWithOAuth:jsondata:"
|
||||
landmarkType = "7">
|
||||
<Locations>
|
||||
<Location
|
||||
uuid = "D37987A6-101C-48CD-B00C-BA0151037B3A - 8543151a2b853e4"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[UIViewController(Wallet) receiveDeepLinkNotification:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "224"
|
||||
endingLineNumber = "224"
|
||||
offsetFromSymbolStart = "248">
|
||||
</Location>
|
||||
<Location
|
||||
uuid = "D37987A6-101C-48CD-B00C-BA0151037B3A - 8543151a2b853c5"
|
||||
shouldBeEnabled = "Yes"
|
||||
ignoreCount = "0"
|
||||
continueAfterRunningActions = "No"
|
||||
symbolName = "-[UIViewController(Wallet) receiveDeepLinkNotification:]"
|
||||
moduleName = "tebg"
|
||||
usesParentBreakpointCondition = "Yes"
|
||||
urlString = "file:///Users/zhl/Documents/workspace/ios/ios-unity/Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "225"
|
||||
endingLineNumber = "225"
|
||||
offsetFromSymbolStart = "240">
|
||||
</Location>
|
||||
</Locations>
|
||||
</BreakpointContent>
|
||||
</BreakpointProxy>
|
||||
<BreakpointProxy
|
||||
@ -855,8 +462,8 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "206"
|
||||
endingLineNumber = "206"
|
||||
startingLineNumber = "207"
|
||||
endingLineNumber = "207"
|
||||
landmarkName = "-signWithOAuth:jsondata:"
|
||||
landmarkType = "7">
|
||||
</BreakpointContent>
|
||||
@ -887,8 +494,8 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "229"
|
||||
endingLineNumber = "229"
|
||||
startingLineNumber = "230"
|
||||
endingLineNumber = "230"
|
||||
landmarkName = "-receiveDeepLinkNotification:"
|
||||
landmarkType = "7">
|
||||
</BreakpointContent>
|
||||
@ -903,8 +510,8 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "255"
|
||||
endingLineNumber = "255"
|
||||
startingLineNumber = "256"
|
||||
endingLineNumber = "256"
|
||||
landmarkName = "-receiveDeepLinkNotification:"
|
||||
landmarkType = "7">
|
||||
</BreakpointContent>
|
||||
@ -919,8 +526,8 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "118"
|
||||
endingLineNumber = "118"
|
||||
startingLineNumber = "119"
|
||||
endingLineNumber = "119"
|
||||
landmarkName = "-signOutGoogle:"
|
||||
landmarkType = "7">
|
||||
</BreakpointContent>
|
||||
@ -935,8 +542,8 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "104"
|
||||
endingLineNumber = "104"
|
||||
startingLineNumber = "105"
|
||||
endingLineNumber = "105"
|
||||
landmarkName = "-signWithGoogle:"
|
||||
landmarkType = "7">
|
||||
</BreakpointContent>
|
||||
@ -951,8 +558,8 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "106"
|
||||
endingLineNumber = "106"
|
||||
startingLineNumber = "107"
|
||||
endingLineNumber = "107"
|
||||
landmarkName = "-signWithGoogle:"
|
||||
landmarkType = "7">
|
||||
</BreakpointContent>
|
||||
@ -967,8 +574,8 @@
|
||||
filePath = "Classes_cocos/UIViewController+Wallet.mm"
|
||||
startingColumnNumber = "9223372036854775807"
|
||||
endingColumnNumber = "9223372036854775807"
|
||||
startingLineNumber = "109"
|
||||
endingLineNumber = "109"
|
||||
startingLineNumber = "110"
|
||||
endingLineNumber = "110"
|
||||
landmarkName = "-signWithGoogle:"
|
||||
landmarkType = "7">
|
||||
</BreakpointContent>
|
||||
|
Loading…
x
Reference in New Issue
Block a user