diff --git a/Classes_cocos/JcWallet.mm b/Classes_cocos/JcWallet.mm index 766b9b4..5fbd69d 100644 --- a/Classes_cocos/JcWallet.mm +++ b/Classes_cocos/JcWallet.mm @@ -403,6 +403,29 @@ bool jsb_signOutGoogle(se::State& s) { return false; } SE_BIND_FUNC(jsb_signOutGoogle) +bool JSB_showQRCode(se::State& s){ + const auto& args = s.args(); + size_t argc = args.size(); + CC_UNUSED bool ok = true; + if (argc >= 2) { + std::string funid; + ok = seval_to_std_string(args[0], &funid); + SE_PRECONDITION2(ok, false, "funid is invalid!"); + std::string text; + ok = seval_to_std_string(args[1], &text); + SE_PRECONDITION2(ok, false, "content is invalid!"); + NSString *ncontent = [NSString stringWithCString:text.c_str() encoding:NSUTF8StringEncoding]; + dispatch_async(dispatch_get_main_queue(), ^{ + UIWindow* window = [[[UIApplication sharedApplication] delegate] window]; + [window.rootViewController showQRCode:ncontent]; + }); + return true; + } + + SE_REPORT_ERROR("wrong number of arguments: %d, was expecting %d", (int)argc, 4); + return false; +} +SE_BIND_FUNC(JSB_showQRCode) bool jsb_register_walletevent_modules(se::Object* global) { @@ -414,6 +437,7 @@ bool jsb_register_walletevent_modules(se::Object* global) { __jsbObj->defineFunction("signWithApple", _SE(jsb_signWithApple)); __jsbObj->defineFunction("signWithTikTok", _SE(jsb_signWithTikTok)); __jsbObj->defineFunction("signOutGoogle", _SE(jsb_signOutGoogle)); + __jsbObj->defineFunction("showQRCode", _SE(JSB_showQRCode)); return true; } diff --git a/Classes_cocos/SimpleQRViewController.h b/Classes_cocos/SimpleQRViewController.h new file mode 100644 index 0000000..3abadcf --- /dev/null +++ b/Classes_cocos/SimpleQRViewController.h @@ -0,0 +1,17 @@ +// +// SimpleQRViewController.h +// Unity-iPhone +// +// Created by zhl on 2022/12/7. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface SimpleQRViewController : UIViewController +@property (nonatomic, strong) UIImage* imgScan; +@property (nonatomic, copy) NSString* content; +@end + +NS_ASSUME_NONNULL_END diff --git a/Classes_cocos/SimpleQRViewController.m b/Classes_cocos/SimpleQRViewController.m new file mode 100644 index 0000000..15f5124 --- /dev/null +++ b/Classes_cocos/SimpleQRViewController.m @@ -0,0 +1,75 @@ +// +// SimpleQRViewController.m +// Unity-iPhone +// +// Created by zhl on 2022/12/7. +// + +#import "SimpleQRViewController.h" +#include "LBXScanNative.h" +#include "UIUtils.h" +#import "ToastManager.h" + +@interface SimpleQRViewController () +@property (weak, nonatomic) IBOutlet UIImageView *scanImg; +@property (weak, nonatomic) IBOutlet UIView *container; +@end + +@implementation SimpleQRViewController + +- (void)viewDidLoad { + [super viewDidLoad]; + // Do any additional setup after loading the view from its nib. + UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(dismissBgView)]; + [self.view addGestureRecognizer:tapGesture]; + + UITapGestureRecognizer *bgViewTapGesture = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(copyContent)]; + [self.container addGestureRecognizer:bgViewTapGesture]; + + self.container.backgroundColor = [UIColor whiteColor]; + self.container.layer.shadowOffset = CGSizeMake(0, 2); + self.container.layer.shadowRadius = 2; + self.container.layer.shadowColor = [UIColor blackColor].CGColor; + self.container.layer.shadowOpacity = 0.5; +} + +/* +#pragma mark - Navigation + +// In a storyboard-based application, you will often want to do a little preparation before navigation +- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { + // Get the new view controller using [segue destinationViewController]. + // Pass the selected object to the new view controller. +} +*/ +- (void)copyContent{ + UIPasteboard *pasteboard = [UIPasteboard generalPasteboard]; + pasteboard.string = self.content; + [ToastManager showToastWithMessage:@"Content copied to clipboard."]; + +} +- (void)dismissBgView { + [UIView animateWithDuration:0.5 animations:^{ + self.view.backgroundColor = [UIColor colorWithWhite:0 alpha:0.1]; + self.container.alpha = 0; + } completion:^(BOOL finished) { + [self dismissViewControllerAnimated:NO completion:nil]; + }]; +} + +- (void)viewWillAppear:(BOOL)animated +{ + [super viewWillAppear:animated]; + self.container.alpha = 1; + if (!_imgScan) { + _scanImg.backgroundColor = [UIColor grayColor]; + if (_content) { + CGSize _size = _scanImg.frame.size; + _imgScan = [LBXScanNative createQRWithString:_content QRSize:_size]; + } + _scanImg.image = _imgScan; + } + +} + +@end diff --git a/Classes_cocos/SimpleQRViewController.xib b/Classes_cocos/SimpleQRViewController.xib new file mode 100644 index 0000000..8d67912 --- /dev/null +++ b/Classes_cocos/SimpleQRViewController.xib @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Classes_cocos/ToastManager.h b/Classes_cocos/ToastManager.h new file mode 100644 index 0000000..26ace43 --- /dev/null +++ b/Classes_cocos/ToastManager.h @@ -0,0 +1,17 @@ +// +// ToastManager.h +// Unity-iPhone +// +// Created by zhl on 2022/12/7. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface ToastManager : NSObject ++ (void)showToastWithMessage:(NSString*)message; ++ (void)showToastWithImage:(NSString*)message image:(UIImage *)image; +@end + +NS_ASSUME_NONNULL_END diff --git a/Classes_cocos/ToastManager.m b/Classes_cocos/ToastManager.m new file mode 100644 index 0000000..384e0e8 --- /dev/null +++ b/Classes_cocos/ToastManager.m @@ -0,0 +1,93 @@ +// +// ToastManager.m +// Unity-iPhone +// +// Created by zhl on 2022/12/7. +// + +#import "ToastManager.h" +#import +#import +#import "UIView+Toast.h" + +@implementation ToastManager ++ (void)showToastWithMessage:(NSString*)message +{ + if (message == nil) { + message = @""; + } + //tip + UIWindow * window = [[UIApplication sharedApplication] keyWindow]; + [window makeToast:message + duration:2 + position:CSToastPositionCenter]; +} + ++ (void) showToastWithImage:(NSString*)message image:(UIImage *)image { + UIWindow * window = [[UIApplication sharedApplication] keyWindow]; + CSToastStyle *style = [[CSToastStyle alloc] initWithDefaultStyle]; + style.backgroundColor = [UIColor colorWithRed: 0.0/255.0 green: 0.0/255.0 blue: 0.0/255.0 alpha: 100.0/255.0]; + style.horizontalPadding = 0; + style.verticalPadding = 0; + style.imageSize = image.size; + style.fullScreen = YES; + style.shadowRadius = .0; + [window makeToast:@"" duration:0 position: CSToastPositionCenter title: @"" image:image style:style completion:nil]; +} + ++ (UIViewController*)getTopViewController +{ + return [self currentTopViewController]; +} + + + + +#pragma mark- Get TOP VC ++ (UIViewController*)topRootController +{ + UIViewController *topController = [[UIApplication sharedApplication].delegate.window rootViewController]; + + // Getting topMost ViewController + while ([topController presentedViewController]) + topController = [topController presentedViewController]; + + // Returning topMost ViewController + return topController; +} + ++ (UIViewController*)presentedWithController:(UIViewController*)vc +{ + while ([vc presentedViewController]) + vc = vc.presentedViewController; + return vc; +} + + ++ (UIViewController*)currentTopViewController +{ + UIViewController *currentViewController = [self topRootController]; + + if ([currentViewController isKindOfClass:[UITabBarController class]] + && ((UITabBarController*)currentViewController).selectedViewController != nil ) + { + currentViewController = ((UITabBarController*)currentViewController).selectedViewController; + } + + currentViewController = [self presentedWithController:currentViewController]; + + while ([currentViewController isKindOfClass:[UINavigationController class]] + && [(UINavigationController*)currentViewController topViewController]) + { + currentViewController = [(UINavigationController*)currentViewController topViewController]; + currentViewController = [self presentedWithController:currentViewController]; + + } + + + currentViewController = [self presentedWithController:currentViewController]; + + + return currentViewController; +} +@end diff --git a/Classes_cocos/UIView+Toast.h b/Classes_cocos/UIView+Toast.h index 7723d30..c424d03 100644 --- a/Classes_cocos/UIView+Toast.h +++ b/Classes_cocos/UIView+Toast.h @@ -333,6 +333,11 @@ extern const NSString * CSToastPositionBottom; */ @property (assign, nonatomic) CGSize activitySize; +/** + * Default NO + */ +@property (assign, nonatomic) BOOL fullScreen; + /** The fade in/out animation duration. Default is 0.2. */ diff --git a/Classes_cocos/UIView+Toast.m b/Classes_cocos/UIView+Toast.m index b680b19..5d30066 100644 --- a/Classes_cocos/UIView+Toast.m +++ b/Classes_cocos/UIView+Toast.m @@ -169,10 +169,13 @@ static const NSString * CSToastQueueKey = @"CSToastQueueKey"; animations:^{ toast.alpha = 1.0; } completion:^(BOOL finished) { + if (duration > 0) { NSTimer *timer = [NSTimer timerWithTimeInterval:duration target:self selector:@selector(cs_toastTimerDidFinish:) userInfo:toast repeats:NO]; [[NSRunLoop mainRunLoop] addTimer:timer forMode:NSRunLoopCommonModes]; objc_setAssociatedObject(toast, &CSToastTimerKey, timer, OBJC_ASSOCIATION_RETAIN_NONATOMIC); + } }]; + } - (void)cs_hideToast:(UIView *)toast { @@ -242,19 +245,21 @@ static const NSString * CSToastQueueKey = @"CSToastQueueKey"; wrapperView.backgroundColor = style.backgroundColor; + CGRect imageRect = CGRectZero; + if(image != nil) { imageView = [[UIImageView alloc] initWithImage:image]; imageView.contentMode = UIViewContentModeScaleAspectFit; - imageView.frame = CGRectMake(style.horizontalPadding, style.verticalPadding, style.imageSize.width, style.imageSize.height); - } - - CGRect imageRect = CGRectZero; - - if(imageView != nil) { - imageRect.origin.x = style.horizontalPadding; - imageRect.origin.y = style.verticalPadding; - imageRect.size.width = imageView.bounds.size.width; - imageRect.size.height = imageView.bounds.size.height; + if (style.fullScreen) { + imageRect.origin.x = (self.bounds.size.width - style.imageSize.width) / 2.0 + style.horizontalPadding; + imageRect.origin.y = (self.bounds.size.height - style.imageSize.height) / 2.0 + style.verticalPadding; + } else { + imageRect.origin.x = style.horizontalPadding; + imageRect.origin.y = style.verticalPadding; + } + imageRect.size.width = style.imageSize.width; + imageRect.size.height = style.imageSize.height; + imageView.frame = imageRect; } if (title != nil) { @@ -319,7 +324,12 @@ static const NSString * CSToastQueueKey = @"CSToastQueueKey"; CGFloat wrapperWidth = MAX((imageRect.size.width + (style.horizontalPadding * 2.0)), (longerX + longerWidth + style.horizontalPadding)); CGFloat wrapperHeight = MAX((messageRect.origin.y + messageRect.size.height + style.verticalPadding), (imageRect.size.height + (style.verticalPadding * 2.0))); - wrapperView.frame = CGRectMake(0.0, 0.0, wrapperWidth, wrapperHeight); + + if(style.fullScreen) { + wrapperView.frame = CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height); + } else { + wrapperView.frame = CGRectMake(0.0, 0.0, wrapperWidth, wrapperHeight); + } if(titleLabel != nil) { titleLabel.frame = titleRect; @@ -485,6 +495,7 @@ static const NSString * CSToastQueueKey = @"CSToastQueueKey"; self.imageSize = CGSizeMake(80.0, 80.0); self.activitySize = CGSizeMake(100.0, 100.0); self.fadeDuration = 0.2; + self.fullScreen = NO; } return self; } diff --git a/Classes_cocos/UIViewController+QR.h b/Classes_cocos/UIViewController+QR.h index 9ac66fe..4ce430e 100644 --- a/Classes_cocos/UIViewController+QR.h +++ b/Classes_cocos/UIViewController+QR.h @@ -10,7 +10,8 @@ NS_ASSUME_NONNULL_BEGIN @interface UIViewController (QR) --(void)showQRCode:(NSString *) content title:(NSString *) title oid:(NSString *) oid; +-(void)showRestoreQR:(NSString *) content title:(NSString *) title oid:(NSString *) oid; +-(void)showQRCode:(NSString *) content; -(void)loadRestoreKey:(NSString *)funid oid:(NSString *) oid; -(void)scanQRCode:(NSString *)funid title:(NSString *) title; @end diff --git a/Classes_cocos/UIViewController+QR.mm b/Classes_cocos/UIViewController+QR.mm index 21ecc21..d7bf1a5 100644 --- a/Classes_cocos/UIViewController+QR.mm +++ b/Classes_cocos/UIViewController+QR.mm @@ -9,21 +9,25 @@ #import "QRCodeReaderViewController.h" #import "QRCodeReader.h" #import "QRCodeReaderDelegate.h" +#import "SimpleQRViewController.h" #import "LBXPermission.h" #import "LBXPermissionSetting.h" #include "QrCodeViewController.h" #include #import "NSString+Customer.h" #include "JcWallet.h" +#import "LBXScanNative.h" +#import "ToastManager.h" @interface UIViewController (QR) @end static QRCodeReaderViewController *qrcodeReaderVC = nil; +static SimpleQRViewController *sqrVC = nil; @implementation UIViewController (QR) --(void)showQRCode:(NSString *) content title:(NSString *) title oid:(NSString *) oid { +-(void)showRestoreQR:(NSString *) content title:(NSString *) title oid:(NSString *) oid { NSLog(@"showQRCode content: %@, title: %@, oid: %@", content, title, oid); dispatch_async(dispatch_get_main_queue(), ^{ QrCodeViewController *vc = [QrCodeViewController new]; @@ -42,6 +46,19 @@ static QRCodeReaderViewController *qrcodeReaderVC = nil; }); } +-(void)showQRCode:(NSString *)content { + if (qrcodeReaderVC == nil) { + sqrVC = [SimpleQRViewController new]; + } + sqrVC.content = content; + // next three code set transparent for simple qr view + self.definesPresentationContext = YES; + sqrVC.modalPresentationStyle = UIModalPresentationOverCurrentContext; + sqrVC.view.backgroundColor = [UIColor colorWithRed: 0.0/255.0 green: 0.0/255.0 blue: 0.0/255.0 alpha: 100.0/255.0]; + [self presentViewController:sqrVC animated:YES completion:nil]; +} + + -(void)loadRestoreKey:(NSString *)funid oid:(NSString *) oid{ NSLog(@"loadRestoreKey::funid: %@, oid:%@", funid, oid); dispatch_async(dispatch_get_main_queue(), ^{ diff --git a/Unity-iPhone.xcodeproj/project.pbxproj b/Unity-iPhone.xcodeproj/project.pbxproj index 207f04c..2242e24 100644 --- a/Unity-iPhone.xcodeproj/project.pbxproj +++ b/Unity-iPhone.xcodeproj/project.pbxproj @@ -90,113 +90,116 @@ D57920A5292F4738004DBD4F /* QrCodeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D57920A4292F4738004DBD4F /* QrCodeViewController.xib */; }; D57920A8292F4763004DBD4F /* QrCodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D57920A7292F4763004DBD4F /* QrCodeViewController.m */; }; D589C9BB28B62D93002CAA34 /* cacert.pem in Resources */ = {isa = PBXBuildFile; fileRef = D589C9B928B62D93002CAA34 /* cacert.pem */; }; - D59137F6293F216100C6AD35 /* Data in Resources */ = {isa = PBXBuildFile; fileRef = D59137F5293F216100C6AD35 /* Data */; }; - D5913861293F217A00C6AD35 /* Bulk_Generics_3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59137F8293F217A00C6AD35 /* Bulk_Generics_3.cpp */; }; - D5913862293F217A00C6AD35 /* Il2CppMethodPointerTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59137F9293F217A00C6AD35 /* Il2CppMethodPointerTable.cpp */; }; - D5913863293F217A00C6AD35 /* Bulk_Generics_2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59137FA293F217A00C6AD35 /* Bulk_Generics_2.cpp */; }; - D5913864293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59137FB293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp */; }; - D5913865293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59137FC293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp */; }; - D5913866293F217A00C6AD35 /* Il2CppInteropDataTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59137FD293F217A00C6AD35 /* Il2CppInteropDataTable.cpp */; }; - D5913867293F217A00C6AD35 /* Bulk_Generics_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59137FE293F217A00C6AD35 /* Bulk_Generics_0.cpp */; }; - D5913868293F217A00C6AD35 /* Bulk_Generics_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59137FF293F217A00C6AD35 /* Bulk_Generics_1.cpp */; }; - D5913869293F217A00C6AD35 /* UnityICallRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913800293F217A00C6AD35 /* UnityICallRegistration.cpp */; }; - D591386A293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913801293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp */; }; - D591386B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913802293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp */; }; - D591386C293F217A00C6AD35 /* GenericMethods1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913803293F217A00C6AD35 /* GenericMethods1.cpp */; }; - D591386D293F217A00C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913804293F217A00C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp */; }; - D591386E293F217A00C6AD35 /* Bulk_Generics_5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913805293F217A00C6AD35 /* Bulk_Generics_5.cpp */; }; - D591386F293F217A00C6AD35 /* Bulk_Generics_4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913806293F217A00C6AD35 /* Bulk_Generics_4.cpp */; }; - D5913870293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913807293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp */; }; - D5913871293F217A00C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913808293F217A00C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp */; }; - D5913872293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913809293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp */; }; - D5913873293F217A00C6AD35 /* GenericMethods0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591380A293F217A00C6AD35 /* GenericMethods0.cpp */; }; - D5913874293F217A00C6AD35 /* GenericMethods2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591380B293F217A00C6AD35 /* GenericMethods2.cpp */; }; - D5913875293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591380C293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp */; }; - D5913876293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591380D293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp */; }; - D5913877293F217A00C6AD35 /* Bulk_System.Xml_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591380E293F217A00C6AD35 /* Bulk_System.Xml_0.cpp */; }; - D5913878293F217A00C6AD35 /* Il2CppGenericMethodPointerTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591380F293F217A00C6AD35 /* Il2CppGenericMethodPointerTable.cpp */; }; - D5913879293F217A00C6AD35 /* Bulk_Generics_6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913810293F217A00C6AD35 /* Bulk_Generics_6.cpp */; }; - D591387A293F217A00C6AD35 /* Il2CppGenericInstDefinitions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913811293F217A00C6AD35 /* Il2CppGenericInstDefinitions.cpp */; }; - D591387B293F217A00C6AD35 /* Il2CppCodeRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913812293F217A00C6AD35 /* Il2CppCodeRegistration.cpp */; }; - D591387C293F217A00C6AD35 /* Bulk_Generics_7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913813293F217A00C6AD35 /* Bulk_Generics_7.cpp */; }; - D591387D293F217A00C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913814293F217A00C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp */; }; - D591387E293F217A00C6AD35 /* GenericMethods3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913815293F217A00C6AD35 /* GenericMethods3.cpp */; }; - D591387F293F217A00C6AD35 /* Bulk_System.Core_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913816293F217A00C6AD35 /* Bulk_System.Core_0.cpp */; }; - D5913880293F217A00C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913817293F217A00C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp */; }; - D5913881293F217A00C6AD35 /* Bulk_mscorlib_6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913818293F217A00C6AD35 /* Bulk_mscorlib_6.cpp */; }; - D5913882293F217A00C6AD35 /* Bulk_mscorlib_7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913819293F217A00C6AD35 /* Bulk_mscorlib_7.cpp */; }; - D5913883293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591381A293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp */; }; - D5913884293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591381B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp */; }; - D5913885293F217A00C6AD35 /* Bulk_mscorlib_5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591381C293F217A00C6AD35 /* Bulk_mscorlib_5.cpp */; }; - D5913886293F217A00C6AD35 /* Bulk_mscorlib_4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591381D293F217A00C6AD35 /* Bulk_mscorlib_4.cpp */; }; - D5913887293F217A00C6AD35 /* Il2CppAttributes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591381E293F217A00C6AD35 /* Il2CppAttributes.cpp */; }; - D5913888293F217A00C6AD35 /* Bulk_mscorlib_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591381F293F217A00C6AD35 /* Bulk_mscorlib_0.cpp */; }; - D5913889293F217A00C6AD35 /* Bulk_mscorlib_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913820293F217A00C6AD35 /* Bulk_mscorlib_1.cpp */; }; - D591388A293F217A00C6AD35 /* Bulk_System_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913821293F217A00C6AD35 /* Bulk_System_1.cpp */; }; - D591388B293F217A00C6AD35 /* Bulk_mscorlib_3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913822293F217A00C6AD35 /* Bulk_mscorlib_3.cpp */; }; - D591388C293F217A00C6AD35 /* Il2CppGenericClassTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913823293F217A00C6AD35 /* Il2CppGenericClassTable.cpp */; }; - D591388D293F217A00C6AD35 /* Il2CppMetadataUsage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913824293F217A00C6AD35 /* Il2CppMetadataUsage.cpp */; }; - D591388E293F217A00C6AD35 /* UnityClassRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913825293F217A00C6AD35 /* UnityClassRegistration.cpp */; }; - D591388F293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913826293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp */; }; - D5913890293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913827293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp */; }; - D5913891293F217B00C6AD35 /* Il2CppGenericMethodTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913828293F217A00C6AD35 /* Il2CppGenericMethodTable.cpp */; }; - D5913892293F217B00C6AD35 /* Bulk_mscorlib_2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913829293F217A00C6AD35 /* Bulk_mscorlib_2.cpp */; }; - D5913893293F217B00C6AD35 /* Bulk_System_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591382A293F217A00C6AD35 /* Bulk_System_0.cpp */; }; - D5913894293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591382B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp */; }; - D5913895293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591382C293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp */; }; - D5913896293F217B00C6AD35 /* Bulk_Generics_11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591382D293F217A00C6AD35 /* Bulk_Generics_11.cpp */; }; - D5913897293F217B00C6AD35 /* Bulk_Generics_10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591382E293F217A00C6AD35 /* Bulk_Generics_10.cpp */; }; - D5913898293F217B00C6AD35 /* Bulk_Generics_12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591382F293F217A00C6AD35 /* Bulk_Generics_12.cpp */; }; - D5913899293F217B00C6AD35 /* Il2CppGenericComDefinitions0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913830293F217A00C6AD35 /* Il2CppGenericComDefinitions0.cpp */; }; - D591389A293F217B00C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913831293F217A00C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp */; }; - D591389B293F217B00C6AD35 /* Bulk_Generics_13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913832293F217A00C6AD35 /* Bulk_Generics_13.cpp */; }; - D591389C293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913833293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp */; }; - D591389D293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913834293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp */; }; - D591389E293F217B00C6AD35 /* Il2CppMetadataRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913835293F217A00C6AD35 /* Il2CppMetadataRegistration.cpp */; }; - D591389F293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913836293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp */; }; - D59138A0293F217B00C6AD35 /* Bulk_mscorlib_9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913837293F217A00C6AD35 /* Bulk_mscorlib_9.cpp */; }; - D59138A1293F217B00C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913838293F217A00C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp */; }; - D59138A2293F217B00C6AD35 /* Bulk_Mono.Security_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913839293F217A00C6AD35 /* Bulk_Mono.Security_0.cpp */; }; - D59138A3293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591383A293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp */; }; - D59138A4293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591383B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp */; }; - D59138A5293F217B00C6AD35 /* Bulk_mscorlib_8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591383C293F217A00C6AD35 /* Bulk_mscorlib_8.cpp */; }; - D59138A6293F217B00C6AD35 /* Il2CppTypeDefinitions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591383D293F217A00C6AD35 /* Il2CppTypeDefinitions.cpp */; }; - D59138A7293F217B00C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591383E293F217A00C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp */; }; - D59138A8293F217B00C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591383F293F217A00C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp */; }; - D59138A9293F217B00C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913840293F217A00C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp */; }; - D59138AA293F217B00C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913841293F217A00C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp */; }; - D59138AB293F217B00C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913842293F217A00C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp */; }; - D59138AC293F217B00C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913843293F217A00C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp */; }; - D59138AD293F217B00C6AD35 /* Il2CppInvokerTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913844293F217A00C6AD35 /* Il2CppInvokerTable.cpp */; }; - D59138AE293F217B00C6AD35 /* Bulk_mscorlib_11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913845293F217A00C6AD35 /* Bulk_mscorlib_11.cpp */; }; - D59138AF293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913846293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp */; }; - D59138B0293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913847293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp */; }; - D59138B1293F217B00C6AD35 /* Bulk_mscorlib_10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913848293F217A00C6AD35 /* Bulk_mscorlib_10.cpp */; }; - D59138B2293F217B00C6AD35 /* Bulk_System.Configuration_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913849293F217A00C6AD35 /* Bulk_System.Configuration_0.cpp */; }; - D59138B3293F217B00C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591384A293F217A00C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp */; }; - D59138B4293F217B00C6AD35 /* Bulk_Generics_9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591384B293F217A00C6AD35 /* Bulk_Generics_9.cpp */; }; - D59138B5293F217B00C6AD35 /* Bulk_mscorlib_12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591384C293F217A00C6AD35 /* Bulk_mscorlib_12.cpp */; }; - D59138B6293F217B00C6AD35 /* Bulk_mscorlib_13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591384D293F217A00C6AD35 /* Bulk_mscorlib_13.cpp */; }; - D59138B7293F217B00C6AD35 /* Bulk_Generics_8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591384E293F217A00C6AD35 /* Bulk_Generics_8.cpp */; }; - D59138B8293F217B00C6AD35 /* Bulk_UnityEngine_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591384F293F217A00C6AD35 /* Bulk_UnityEngine_0.cpp */; }; - D59138B9293F217B00C6AD35 /* Bulk_UnityEngine.UI_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913850293F217A00C6AD35 /* Bulk_UnityEngine.UI_0.cpp */; }; - D59138BA293F217B00C6AD35 /* UnresolvedVirtualCallStubs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913851293F217A00C6AD35 /* UnresolvedVirtualCallStubs.cpp */; }; - D59138BB293F217B00C6AD35 /* Bulk_mscorlib_17.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913852293F217A00C6AD35 /* Bulk_mscorlib_17.cpp */; }; - D59138BC293F217B00C6AD35 /* Bulk_mscorlib_16.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913853293F217A00C6AD35 /* Bulk_mscorlib_16.cpp */; }; - D59138BD293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913854293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp */; }; - D59138BE293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913855293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp */; }; - D59138BF293F217B00C6AD35 /* Bulk_UnityEngine.UI_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913856293F217A00C6AD35 /* Bulk_UnityEngine.UI_1.cpp */; }; - D59138C0293F217B00C6AD35 /* Bulk_UnityEngine.UI_3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913857293F217A00C6AD35 /* Bulk_UnityEngine.UI_3.cpp */; }; - D59138C1293F217B00C6AD35 /* Il2CppGenericMethodDefinitions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913858293F217A00C6AD35 /* Il2CppGenericMethodDefinitions.cpp */; }; - D59138C2293F217B00C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913859293F217A00C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp */; }; - D59138C3293F217B00C6AD35 /* Bulk_mscorlib_14.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591385A293F217A00C6AD35 /* Bulk_mscorlib_14.cpp */; }; - D59138C4293F217B00C6AD35 /* Bulk_mscorlib_15.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591385B293F217A00C6AD35 /* Bulk_mscorlib_15.cpp */; }; - D59138C5293F217B00C6AD35 /* Bulk_Assembly-CSharp_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591385C293F217A00C6AD35 /* Bulk_Assembly-CSharp_0.cpp */; }; - D59138C6293F217B00C6AD35 /* Bulk_netstandard_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591385D293F217A00C6AD35 /* Bulk_netstandard_0.cpp */; }; - D59138C7293F217B00C6AD35 /* Bulk_UnityEngine.UI_2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591385E293F217A00C6AD35 /* Bulk_UnityEngine.UI_2.cpp */; }; - D59138C8293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591385F293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp */; }; - D59138C9293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913860293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp */; }; D59138CC293F486A00C6AD35 /* QRPhotoAlbumButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D59138CB293F486A00C6AD35 /* QRPhotoAlbumButton.m */; }; + D59138D0294043C800C6AD35 /* ToastManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D59138CF294043C800C6AD35 /* ToastManager.m */; }; + D59138D32940468A00C6AD35 /* Data in Resources */ = {isa = PBXBuildFile; fileRef = D59138D22940468A00C6AD35 /* Data */; }; + D591393E294046A100C6AD35 /* Bulk_Generics_3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138D5294046A000C6AD35 /* Bulk_Generics_3.cpp */; }; + D591393F294046A100C6AD35 /* Il2CppMethodPointerTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138D6294046A000C6AD35 /* Il2CppMethodPointerTable.cpp */; }; + D5913940294046A100C6AD35 /* Bulk_Generics_2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138D7294046A000C6AD35 /* Bulk_Generics_2.cpp */; }; + D5913941294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138D8294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp */; }; + D5913942294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138D9294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp */; }; + D5913943294046A100C6AD35 /* Il2CppInteropDataTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138DA294046A000C6AD35 /* Il2CppInteropDataTable.cpp */; }; + D5913944294046A100C6AD35 /* Bulk_Generics_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138DB294046A000C6AD35 /* Bulk_Generics_0.cpp */; }; + D5913945294046A100C6AD35 /* Bulk_Generics_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138DC294046A000C6AD35 /* Bulk_Generics_1.cpp */; }; + D5913946294046A100C6AD35 /* UnityICallRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138DD294046A000C6AD35 /* UnityICallRegistration.cpp */; }; + D5913947294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138DE294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp */; }; + D5913948294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138DF294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp */; }; + D5913949294046A100C6AD35 /* GenericMethods1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E0294046A000C6AD35 /* GenericMethods1.cpp */; }; + D591394A294046A100C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E1294046A000C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp */; }; + D591394B294046A100C6AD35 /* Bulk_Generics_5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E2294046A000C6AD35 /* Bulk_Generics_5.cpp */; }; + D591394C294046A100C6AD35 /* Bulk_Generics_4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E3294046A000C6AD35 /* Bulk_Generics_4.cpp */; }; + D591394D294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E4294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp */; }; + D591394E294046A100C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E5294046A000C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp */; }; + D591394F294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E6294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp */; }; + D5913950294046A100C6AD35 /* GenericMethods0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E7294046A000C6AD35 /* GenericMethods0.cpp */; }; + D5913951294046A100C6AD35 /* GenericMethods2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E8294046A000C6AD35 /* GenericMethods2.cpp */; }; + D5913952294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138E9294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp */; }; + D5913953294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138EA294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp */; }; + D5913954294046A100C6AD35 /* Bulk_System.Xml_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138EB294046A000C6AD35 /* Bulk_System.Xml_0.cpp */; }; + D5913955294046A100C6AD35 /* Il2CppGenericMethodPointerTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138EC294046A000C6AD35 /* Il2CppGenericMethodPointerTable.cpp */; }; + D5913956294046A100C6AD35 /* Bulk_Generics_6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138ED294046A100C6AD35 /* Bulk_Generics_6.cpp */; }; + D5913957294046A100C6AD35 /* Il2CppGenericInstDefinitions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138EE294046A100C6AD35 /* Il2CppGenericInstDefinitions.cpp */; }; + D5913958294046A100C6AD35 /* Il2CppCodeRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138EF294046A100C6AD35 /* Il2CppCodeRegistration.cpp */; }; + D5913959294046A100C6AD35 /* Bulk_Generics_7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F0294046A100C6AD35 /* Bulk_Generics_7.cpp */; }; + D591395A294046A100C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F1294046A100C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp */; }; + D591395B294046A100C6AD35 /* GenericMethods3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F2294046A100C6AD35 /* GenericMethods3.cpp */; }; + D591395C294046A100C6AD35 /* Bulk_System.Core_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F3294046A100C6AD35 /* Bulk_System.Core_0.cpp */; }; + D591395D294046A100C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F4294046A100C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp */; }; + D591395E294046A100C6AD35 /* Bulk_mscorlib_6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F5294046A100C6AD35 /* Bulk_mscorlib_6.cpp */; }; + D591395F294046A100C6AD35 /* Bulk_mscorlib_7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F6294046A100C6AD35 /* Bulk_mscorlib_7.cpp */; }; + D5913960294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F7294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp */; }; + D5913961294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F8294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp */; }; + D5913962294046A100C6AD35 /* Bulk_mscorlib_5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138F9294046A100C6AD35 /* Bulk_mscorlib_5.cpp */; }; + D5913963294046A100C6AD35 /* Bulk_mscorlib_4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138FA294046A100C6AD35 /* Bulk_mscorlib_4.cpp */; }; + D5913964294046A100C6AD35 /* Il2CppAttributes.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138FB294046A100C6AD35 /* Il2CppAttributes.cpp */; }; + D5913965294046A100C6AD35 /* Bulk_mscorlib_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138FC294046A100C6AD35 /* Bulk_mscorlib_0.cpp */; }; + D5913966294046A100C6AD35 /* Bulk_mscorlib_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138FD294046A100C6AD35 /* Bulk_mscorlib_1.cpp */; }; + D5913967294046A100C6AD35 /* Bulk_System_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138FE294046A100C6AD35 /* Bulk_System_1.cpp */; }; + D5913968294046A100C6AD35 /* Bulk_mscorlib_3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D59138FF294046A100C6AD35 /* Bulk_mscorlib_3.cpp */; }; + D5913969294046A100C6AD35 /* Il2CppGenericClassTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913900294046A100C6AD35 /* Il2CppGenericClassTable.cpp */; }; + D591396A294046A100C6AD35 /* Il2CppMetadataUsage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913901294046A100C6AD35 /* Il2CppMetadataUsage.cpp */; }; + D591396B294046A100C6AD35 /* UnityClassRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913902294046A100C6AD35 /* UnityClassRegistration.cpp */; }; + D591396C294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913903294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp */; }; + D591396D294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913904294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp */; }; + D591396E294046A100C6AD35 /* Il2CppGenericMethodTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913905294046A100C6AD35 /* Il2CppGenericMethodTable.cpp */; }; + D591396F294046A100C6AD35 /* Bulk_mscorlib_2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913906294046A100C6AD35 /* Bulk_mscorlib_2.cpp */; }; + D5913970294046A100C6AD35 /* Bulk_System_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913907294046A100C6AD35 /* Bulk_System_0.cpp */; }; + D5913971294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913908294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp */; }; + D5913972294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913909294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp */; }; + D5913973294046A100C6AD35 /* Bulk_Generics_11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591390A294046A100C6AD35 /* Bulk_Generics_11.cpp */; }; + D5913974294046A100C6AD35 /* Bulk_Generics_10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591390B294046A100C6AD35 /* Bulk_Generics_10.cpp */; }; + D5913975294046A100C6AD35 /* Bulk_Generics_12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591390C294046A100C6AD35 /* Bulk_Generics_12.cpp */; }; + D5913976294046A100C6AD35 /* Il2CppGenericComDefinitions0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591390D294046A100C6AD35 /* Il2CppGenericComDefinitions0.cpp */; }; + D5913977294046A100C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591390E294046A100C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp */; }; + D5913978294046A100C6AD35 /* Bulk_Generics_13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591390F294046A100C6AD35 /* Bulk_Generics_13.cpp */; }; + D5913979294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913910294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp */; }; + D591397A294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913911294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp */; }; + D591397B294046A100C6AD35 /* Il2CppMetadataRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913912294046A100C6AD35 /* Il2CppMetadataRegistration.cpp */; }; + D591397C294046A100C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913913294046A100C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp */; }; + D591397D294046A100C6AD35 /* Bulk_mscorlib_9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913914294046A100C6AD35 /* Bulk_mscorlib_9.cpp */; }; + D591397E294046A100C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913915294046A100C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp */; }; + D591397F294046A100C6AD35 /* Bulk_Mono.Security_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913916294046A100C6AD35 /* Bulk_Mono.Security_0.cpp */; }; + D5913980294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913917294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp */; }; + D5913981294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913918294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp */; }; + D5913982294046A100C6AD35 /* Bulk_mscorlib_8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913919294046A100C6AD35 /* Bulk_mscorlib_8.cpp */; }; + D5913983294046A100C6AD35 /* Il2CppTypeDefinitions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591391A294046A100C6AD35 /* Il2CppTypeDefinitions.cpp */; }; + D5913984294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591391B294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp */; }; + D5913985294046A100C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591391C294046A100C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp */; }; + D5913986294046A100C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591391D294046A100C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp */; }; + D5913987294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591391E294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp */; }; + D5913988294046A100C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591391F294046A100C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp */; }; + D5913989294046A100C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913920294046A100C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp */; }; + D591398A294046A100C6AD35 /* Il2CppInvokerTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913921294046A100C6AD35 /* Il2CppInvokerTable.cpp */; }; + D591398B294046A100C6AD35 /* Bulk_mscorlib_11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913922294046A100C6AD35 /* Bulk_mscorlib_11.cpp */; }; + D591398C294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913923294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp */; }; + D591398D294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913924294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp */; }; + D591398E294046A100C6AD35 /* Bulk_mscorlib_10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913925294046A100C6AD35 /* Bulk_mscorlib_10.cpp */; }; + D591398F294046A100C6AD35 /* Bulk_System.Configuration_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913926294046A100C6AD35 /* Bulk_System.Configuration_0.cpp */; }; + D5913990294046A100C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913927294046A100C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp */; }; + D5913991294046A100C6AD35 /* Bulk_Generics_9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913928294046A100C6AD35 /* Bulk_Generics_9.cpp */; }; + D5913992294046A100C6AD35 /* Bulk_mscorlib_12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913929294046A100C6AD35 /* Bulk_mscorlib_12.cpp */; }; + D5913993294046A100C6AD35 /* Bulk_mscorlib_13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591392A294046A100C6AD35 /* Bulk_mscorlib_13.cpp */; }; + D5913994294046A100C6AD35 /* Bulk_Generics_8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591392B294046A100C6AD35 /* Bulk_Generics_8.cpp */; }; + D5913995294046A100C6AD35 /* Bulk_UnityEngine_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591392C294046A100C6AD35 /* Bulk_UnityEngine_0.cpp */; }; + D5913996294046A100C6AD35 /* Bulk_UnityEngine.UI_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591392D294046A100C6AD35 /* Bulk_UnityEngine.UI_0.cpp */; }; + D5913997294046A100C6AD35 /* UnresolvedVirtualCallStubs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591392E294046A100C6AD35 /* UnresolvedVirtualCallStubs.cpp */; }; + D5913998294046A100C6AD35 /* Bulk_mscorlib_17.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591392F294046A100C6AD35 /* Bulk_mscorlib_17.cpp */; }; + D5913999294046A100C6AD35 /* Bulk_mscorlib_16.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913930294046A100C6AD35 /* Bulk_mscorlib_16.cpp */; }; + D591399A294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913931294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp */; }; + D591399B294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913932294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp */; }; + D591399C294046A100C6AD35 /* Bulk_UnityEngine.UI_1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913933294046A100C6AD35 /* Bulk_UnityEngine.UI_1.cpp */; }; + D591399D294046A100C6AD35 /* Bulk_UnityEngine.UI_3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913934294046A100C6AD35 /* Bulk_UnityEngine.UI_3.cpp */; }; + D591399E294046A100C6AD35 /* Il2CppGenericMethodDefinitions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913935294046A100C6AD35 /* Il2CppGenericMethodDefinitions.cpp */; }; + D591399F294046A100C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913936294046A100C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp */; }; + D59139A0294046A100C6AD35 /* Bulk_mscorlib_14.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913937294046A100C6AD35 /* Bulk_mscorlib_14.cpp */; }; + D59139A1294046A100C6AD35 /* Bulk_mscorlib_15.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913938294046A100C6AD35 /* Bulk_mscorlib_15.cpp */; }; + D59139A2294046A100C6AD35 /* Bulk_Assembly-CSharp_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D5913939294046A100C6AD35 /* Bulk_Assembly-CSharp_0.cpp */; }; + D59139A3294046A100C6AD35 /* Bulk_netstandard_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591393A294046A100C6AD35 /* Bulk_netstandard_0.cpp */; }; + D59139A4294046A100C6AD35 /* Bulk_UnityEngine.UI_2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591393B294046A100C6AD35 /* Bulk_UnityEngine.UI_2.cpp */; }; + D59139A5294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591393C294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp */; }; + D59139A6294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D591393D294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp */; }; + D59139AA294074DB00C6AD35 /* SimpleQRViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D59139A8294074DB00C6AD35 /* SimpleQRViewController.m */; }; + D59139AB294074DB00C6AD35 /* SimpleQRViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = D59139A9294074DB00C6AD35 /* SimpleQRViewController.xib */; }; D59AB424292DBACE00714392 /* CloudKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D59AB423292DBACE00714392 /* CloudKit.framework */; }; D59AB42F292E250500714392 /* UICKeyChainStore.m in Sources */ = {isa = PBXBuildFile; fileRef = D59AB42E292E250500714392 /* UICKeyChainStore.m */; }; D59AB433292E26CE00714392 /* DataManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D59AB432292E26CE00714392 /* DataManager.m */; }; @@ -399,114 +402,119 @@ D57920A6292F4763004DBD4F /* QrCodeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = QrCodeViewController.h; sourceTree = ""; }; D57920A7292F4763004DBD4F /* QrCodeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = QrCodeViewController.m; sourceTree = ""; }; D589C9B928B62D93002CAA34 /* cacert.pem */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = cacert.pem; sourceTree = ""; }; - D59137F5293F216100C6AD35 /* Data */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Data; path = ../../first/target/ios/Data; sourceTree = ""; }; - D59137F8293F217A00C6AD35 /* Bulk_Generics_3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_3.cpp; sourceTree = ""; }; - D59137F9293F217A00C6AD35 /* Il2CppMethodPointerTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppMethodPointerTable.cpp; sourceTree = ""; }; - D59137FA293F217A00C6AD35 /* Bulk_Generics_2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_2.cpp; sourceTree = ""; }; - D59137FB293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_9Table.cpp; sourceTree = ""; }; - D59137FC293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_8Table.cpp; sourceTree = ""; }; - D59137FD293F217A00C6AD35 /* Il2CppInteropDataTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppInteropDataTable.cpp; sourceTree = ""; }; - D59137FE293F217A00C6AD35 /* Bulk_Generics_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_0.cpp; sourceTree = ""; }; - D59137FF293F217A00C6AD35 /* Bulk_Generics_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_1.cpp; sourceTree = ""; }; - D5913800293F217A00C6AD35 /* UnityICallRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityICallRegistration.cpp; sourceTree = ""; }; - D5913801293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_3Table.cpp; sourceTree = ""; }; - D5913802293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_2Table.cpp; sourceTree = ""; }; - D5913803293F217A00C6AD35 /* GenericMethods1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods1.cpp; sourceTree = ""; }; - D5913804293F217A00C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.TextRenderingModule_0.cpp; sourceTree = ""; }; - D5913805293F217A00C6AD35 /* Bulk_Generics_5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_5.cpp; sourceTree = ""; }; - D5913806293F217A00C6AD35 /* Bulk_Generics_4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_4.cpp; sourceTree = ""; }; - D5913807293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_17Table.cpp; sourceTree = ""; }; - D5913808293F217A00C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.Physics2DModule_0.cpp; sourceTree = ""; }; - D5913809293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_16Table.cpp; sourceTree = ""; }; - D591380A293F217A00C6AD35 /* GenericMethods0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods0.cpp; sourceTree = ""; }; - D591380B293F217A00C6AD35 /* GenericMethods2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods2.cpp; sourceTree = ""; }; - D591380C293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_23Table.cpp; sourceTree = ""; }; - D591380D293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_22Table.cpp; sourceTree = ""; }; - D591380E293F217A00C6AD35 /* Bulk_System.Xml_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Xml_0.cpp; sourceTree = ""; }; - D591380F293F217A00C6AD35 /* Il2CppGenericMethodPointerTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericMethodPointerTable.cpp; sourceTree = ""; }; - D5913810293F217A00C6AD35 /* Bulk_Generics_6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_6.cpp; sourceTree = ""; }; - D5913811293F217A00C6AD35 /* Il2CppGenericInstDefinitions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericInstDefinitions.cpp; sourceTree = ""; }; - D5913812293F217A00C6AD35 /* Il2CppCodeRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCodeRegistration.cpp; sourceTree = ""; }; - D5913813293F217A00C6AD35 /* Bulk_Generics_7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_7.cpp; sourceTree = ""; }; - D5913814293F217A00C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.SharedInternalsModule_0.cpp; sourceTree = ""; }; - D5913815293F217A00C6AD35 /* GenericMethods3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods3.cpp; sourceTree = ""; }; - D5913816293F217A00C6AD35 /* Bulk_System.Core_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Core_0.cpp; sourceTree = ""; }; - D5913817293F217A00C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.PhysicsModule_0.cpp; sourceTree = ""; }; - D5913818293F217A00C6AD35 /* Bulk_mscorlib_6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_6.cpp; sourceTree = ""; }; - D5913819293F217A00C6AD35 /* Bulk_mscorlib_7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_7.cpp; sourceTree = ""; }; - D591381A293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_10Table.cpp; sourceTree = ""; }; - D591381B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_11Table.cpp; sourceTree = ""; }; - D591381C293F217A00C6AD35 /* Bulk_mscorlib_5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_5.cpp; sourceTree = ""; }; - D591381D293F217A00C6AD35 /* Bulk_mscorlib_4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_4.cpp; sourceTree = ""; }; - D591381E293F217A00C6AD35 /* Il2CppAttributes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppAttributes.cpp; sourceTree = ""; }; - D591381F293F217A00C6AD35 /* Bulk_mscorlib_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_0.cpp; sourceTree = ""; }; - D5913820293F217A00C6AD35 /* Bulk_mscorlib_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_1.cpp; sourceTree = ""; }; - D5913821293F217A00C6AD35 /* Bulk_System_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System_1.cpp; sourceTree = ""; }; - D5913822293F217A00C6AD35 /* Bulk_mscorlib_3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_3.cpp; sourceTree = ""; }; - D5913823293F217A00C6AD35 /* Il2CppGenericClassTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericClassTable.cpp; sourceTree = ""; }; - D5913824293F217A00C6AD35 /* Il2CppMetadataUsage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppMetadataUsage.cpp; sourceTree = ""; }; - D5913825293F217A00C6AD35 /* UnityClassRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityClassRegistration.cpp; sourceTree = ""; }; - D5913826293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_4Table.cpp; sourceTree = ""; }; - D5913827293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_5Table.cpp; sourceTree = ""; }; - D5913828293F217A00C6AD35 /* Il2CppGenericMethodTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericMethodTable.cpp; sourceTree = ""; }; - D5913829293F217A00C6AD35 /* Bulk_mscorlib_2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_2.cpp; sourceTree = ""; }; - D591382A293F217A00C6AD35 /* Bulk_System_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System_0.cpp; sourceTree = ""; }; - D591382B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_20Table.cpp; sourceTree = ""; }; - D591382C293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_21Table.cpp; sourceTree = ""; }; - D591382D293F217A00C6AD35 /* Bulk_Generics_11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_11.cpp; sourceTree = ""; }; - D591382E293F217A00C6AD35 /* Bulk_Generics_10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_10.cpp; sourceTree = ""; }; - D591382F293F217A00C6AD35 /* Bulk_Generics_12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_12.cpp; sourceTree = ""; }; - D5913830293F217A00C6AD35 /* Il2CppGenericComDefinitions0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericComDefinitions0.cpp; sourceTree = ""; }; - D5913831293F217A00C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.AudioModule_0.cpp; sourceTree = ""; }; - D5913832293F217A00C6AD35 /* Bulk_Generics_13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_13.cpp; sourceTree = ""; }; - D5913833293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_14Table.cpp; sourceTree = ""; }; - D5913834293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_15Table.cpp; sourceTree = ""; }; - D5913835293F217A00C6AD35 /* Il2CppMetadataRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppMetadataRegistration.cpp; sourceTree = ""; }; - D5913836293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValuesTable.cpp; sourceTree = ""; }; - D5913837293F217A00C6AD35 /* Bulk_mscorlib_9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_9.cpp; sourceTree = ""; }; - D5913838293F217A00C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.GameCenterModule_0.cpp; sourceTree = ""; }; - D5913839293F217A00C6AD35 /* Bulk_Mono.Security_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Mono.Security_0.cpp; sourceTree = ""; }; - D591383A293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_0Table.cpp; sourceTree = ""; }; - D591383B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_1Table.cpp; sourceTree = ""; }; - D591383C293F217A00C6AD35 /* Bulk_mscorlib_8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_8.cpp; sourceTree = ""; }; - D591383D293F217A00C6AD35 /* Il2CppTypeDefinitions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppTypeDefinitions.cpp; sourceTree = ""; }; - D591383E293F217A00C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.CoreModule_1.cpp; sourceTree = ""; }; - D591383F293F217A00C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UIModule_0.cpp; sourceTree = ""; }; - D5913840293F217A00C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppReversePInvokeWrapperTable.cpp; sourceTree = ""; }; - D5913841293F217A00C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.CoreModule_0.cpp; sourceTree = ""; }; - D5913842293F217A00C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Diagnostics.StackTrace_0.cpp; sourceTree = ""; }; - D5913843293F217A00C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.IMGUIModule_0.cpp; sourceTree = ""; }; - D5913844293F217A00C6AD35 /* Il2CppInvokerTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppInvokerTable.cpp; sourceTree = ""; }; - D5913845293F217A00C6AD35 /* Bulk_mscorlib_11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_11.cpp; sourceTree = ""; }; - D5913846293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_7Table.cpp; sourceTree = ""; }; - D5913847293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_6Table.cpp; sourceTree = ""; }; - D5913848293F217A00C6AD35 /* Bulk_mscorlib_10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_10.cpp; sourceTree = ""; }; - D5913849293F217A00C6AD35 /* Bulk_System.Configuration_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Configuration_0.cpp; sourceTree = ""; }; - D591384A293F217A00C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.AnimationModule_0.cpp; sourceTree = ""; }; - D591384B293F217A00C6AD35 /* Bulk_Generics_9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_9.cpp; sourceTree = ""; }; - D591384C293F217A00C6AD35 /* Bulk_mscorlib_12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_12.cpp; sourceTree = ""; }; - D591384D293F217A00C6AD35 /* Bulk_mscorlib_13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_13.cpp; sourceTree = ""; }; - D591384E293F217A00C6AD35 /* Bulk_Generics_8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_8.cpp; sourceTree = ""; }; - D591384F293F217A00C6AD35 /* Bulk_UnityEngine_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine_0.cpp; sourceTree = ""; }; - D5913850293F217A00C6AD35 /* Bulk_UnityEngine.UI_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UI_0.cpp; sourceTree = ""; }; - D5913851293F217A00C6AD35 /* UnresolvedVirtualCallStubs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnresolvedVirtualCallStubs.cpp; sourceTree = ""; }; - D5913852293F217A00C6AD35 /* Bulk_mscorlib_17.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_17.cpp; sourceTree = ""; }; - D5913853293F217A00C6AD35 /* Bulk_mscorlib_16.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_16.cpp; sourceTree = ""; }; - D5913854293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_19Table.cpp; sourceTree = ""; }; - D5913855293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_18Table.cpp; sourceTree = ""; }; - D5913856293F217A00C6AD35 /* Bulk_UnityEngine.UI_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UI_1.cpp; sourceTree = ""; }; - D5913857293F217A00C6AD35 /* Bulk_UnityEngine.UI_3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UI_3.cpp; sourceTree = ""; }; - D5913858293F217A00C6AD35 /* Il2CppGenericMethodDefinitions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericMethodDefinitions.cpp; sourceTree = ""; }; - D5913859293F217A00C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Globalization.Extensions_0.cpp; sourceTree = ""; }; - D591385A293F217A00C6AD35 /* Bulk_mscorlib_14.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_14.cpp; sourceTree = ""; }; - D591385B293F217A00C6AD35 /* Bulk_mscorlib_15.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_15.cpp; sourceTree = ""; }; - D591385C293F217A00C6AD35 /* Bulk_Assembly-CSharp_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Bulk_Assembly-CSharp_0.cpp"; sourceTree = ""; }; - D591385D293F217A00C6AD35 /* Bulk_netstandard_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_netstandard_0.cpp; sourceTree = ""; }; - D591385E293F217A00C6AD35 /* Bulk_UnityEngine.UI_2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UI_2.cpp; sourceTree = ""; }; - D591385F293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_13Table.cpp; sourceTree = ""; }; - D5913860293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_12Table.cpp; sourceTree = ""; }; D59138CA293F486A00C6AD35 /* QRPhotoAlbumButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = QRPhotoAlbumButton.h; sourceTree = ""; }; D59138CB293F486A00C6AD35 /* QRPhotoAlbumButton.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = QRPhotoAlbumButton.m; sourceTree = ""; }; + D59138CE294043C800C6AD35 /* ToastManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ToastManager.h; sourceTree = ""; }; + D59138CF294043C800C6AD35 /* ToastManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ToastManager.m; sourceTree = ""; }; + D59138D22940468A00C6AD35 /* Data */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Data; path = ../../first/target/ios/Data; sourceTree = ""; }; + D59138D5294046A000C6AD35 /* Bulk_Generics_3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_3.cpp; sourceTree = ""; }; + D59138D6294046A000C6AD35 /* Il2CppMethodPointerTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppMethodPointerTable.cpp; sourceTree = ""; }; + D59138D7294046A000C6AD35 /* Bulk_Generics_2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_2.cpp; sourceTree = ""; }; + D59138D8294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_9Table.cpp; sourceTree = ""; }; + D59138D9294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_8Table.cpp; sourceTree = ""; }; + D59138DA294046A000C6AD35 /* Il2CppInteropDataTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppInteropDataTable.cpp; sourceTree = ""; }; + D59138DB294046A000C6AD35 /* Bulk_Generics_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_0.cpp; sourceTree = ""; }; + D59138DC294046A000C6AD35 /* Bulk_Generics_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_1.cpp; sourceTree = ""; }; + D59138DD294046A000C6AD35 /* UnityICallRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityICallRegistration.cpp; sourceTree = ""; }; + D59138DE294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_3Table.cpp; sourceTree = ""; }; + D59138DF294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_2Table.cpp; sourceTree = ""; }; + D59138E0294046A000C6AD35 /* GenericMethods1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods1.cpp; sourceTree = ""; }; + D59138E1294046A000C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.TextRenderingModule_0.cpp; sourceTree = ""; }; + D59138E2294046A000C6AD35 /* Bulk_Generics_5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_5.cpp; sourceTree = ""; }; + D59138E3294046A000C6AD35 /* Bulk_Generics_4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_4.cpp; sourceTree = ""; }; + D59138E4294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_17Table.cpp; sourceTree = ""; }; + D59138E5294046A000C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.Physics2DModule_0.cpp; sourceTree = ""; }; + D59138E6294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_16Table.cpp; sourceTree = ""; }; + D59138E7294046A000C6AD35 /* GenericMethods0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods0.cpp; sourceTree = ""; }; + D59138E8294046A000C6AD35 /* GenericMethods2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods2.cpp; sourceTree = ""; }; + D59138E9294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_23Table.cpp; sourceTree = ""; }; + D59138EA294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_22Table.cpp; sourceTree = ""; }; + D59138EB294046A000C6AD35 /* Bulk_System.Xml_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Xml_0.cpp; sourceTree = ""; }; + D59138EC294046A000C6AD35 /* Il2CppGenericMethodPointerTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericMethodPointerTable.cpp; sourceTree = ""; }; + D59138ED294046A100C6AD35 /* Bulk_Generics_6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_6.cpp; sourceTree = ""; }; + D59138EE294046A100C6AD35 /* Il2CppGenericInstDefinitions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericInstDefinitions.cpp; sourceTree = ""; }; + D59138EF294046A100C6AD35 /* Il2CppCodeRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCodeRegistration.cpp; sourceTree = ""; }; + D59138F0294046A100C6AD35 /* Bulk_Generics_7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_7.cpp; sourceTree = ""; }; + D59138F1294046A100C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.SharedInternalsModule_0.cpp; sourceTree = ""; }; + D59138F2294046A100C6AD35 /* GenericMethods3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods3.cpp; sourceTree = ""; }; + D59138F3294046A100C6AD35 /* Bulk_System.Core_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Core_0.cpp; sourceTree = ""; }; + D59138F4294046A100C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.PhysicsModule_0.cpp; sourceTree = ""; }; + D59138F5294046A100C6AD35 /* Bulk_mscorlib_6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_6.cpp; sourceTree = ""; }; + D59138F6294046A100C6AD35 /* Bulk_mscorlib_7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_7.cpp; sourceTree = ""; }; + D59138F7294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_10Table.cpp; sourceTree = ""; }; + D59138F8294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_11Table.cpp; sourceTree = ""; }; + D59138F9294046A100C6AD35 /* Bulk_mscorlib_5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_5.cpp; sourceTree = ""; }; + D59138FA294046A100C6AD35 /* Bulk_mscorlib_4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_4.cpp; sourceTree = ""; }; + D59138FB294046A100C6AD35 /* Il2CppAttributes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppAttributes.cpp; sourceTree = ""; }; + D59138FC294046A100C6AD35 /* Bulk_mscorlib_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_0.cpp; sourceTree = ""; }; + D59138FD294046A100C6AD35 /* Bulk_mscorlib_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_1.cpp; sourceTree = ""; }; + D59138FE294046A100C6AD35 /* Bulk_System_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System_1.cpp; sourceTree = ""; }; + D59138FF294046A100C6AD35 /* Bulk_mscorlib_3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_3.cpp; sourceTree = ""; }; + D5913900294046A100C6AD35 /* Il2CppGenericClassTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericClassTable.cpp; sourceTree = ""; }; + D5913901294046A100C6AD35 /* Il2CppMetadataUsage.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppMetadataUsage.cpp; sourceTree = ""; }; + D5913902294046A100C6AD35 /* UnityClassRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityClassRegistration.cpp; sourceTree = ""; }; + D5913903294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_4Table.cpp; sourceTree = ""; }; + D5913904294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_5Table.cpp; sourceTree = ""; }; + D5913905294046A100C6AD35 /* Il2CppGenericMethodTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericMethodTable.cpp; sourceTree = ""; }; + D5913906294046A100C6AD35 /* Bulk_mscorlib_2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_2.cpp; sourceTree = ""; }; + D5913907294046A100C6AD35 /* Bulk_System_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System_0.cpp; sourceTree = ""; }; + D5913908294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_20Table.cpp; sourceTree = ""; }; + D5913909294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_21Table.cpp; sourceTree = ""; }; + D591390A294046A100C6AD35 /* Bulk_Generics_11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_11.cpp; sourceTree = ""; }; + D591390B294046A100C6AD35 /* Bulk_Generics_10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_10.cpp; sourceTree = ""; }; + D591390C294046A100C6AD35 /* Bulk_Generics_12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_12.cpp; sourceTree = ""; }; + D591390D294046A100C6AD35 /* Il2CppGenericComDefinitions0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericComDefinitions0.cpp; sourceTree = ""; }; + D591390E294046A100C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.AudioModule_0.cpp; sourceTree = ""; }; + D591390F294046A100C6AD35 /* Bulk_Generics_13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_13.cpp; sourceTree = ""; }; + D5913910294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_14Table.cpp; sourceTree = ""; }; + D5913911294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_15Table.cpp; sourceTree = ""; }; + D5913912294046A100C6AD35 /* Il2CppMetadataRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppMetadataRegistration.cpp; sourceTree = ""; }; + D5913913294046A100C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValuesTable.cpp; sourceTree = ""; }; + D5913914294046A100C6AD35 /* Bulk_mscorlib_9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_9.cpp; sourceTree = ""; }; + D5913915294046A100C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.GameCenterModule_0.cpp; sourceTree = ""; }; + D5913916294046A100C6AD35 /* Bulk_Mono.Security_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Mono.Security_0.cpp; sourceTree = ""; }; + D5913917294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_0Table.cpp; sourceTree = ""; }; + D5913918294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_1Table.cpp; sourceTree = ""; }; + D5913919294046A100C6AD35 /* Bulk_mscorlib_8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_8.cpp; sourceTree = ""; }; + D591391A294046A100C6AD35 /* Il2CppTypeDefinitions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppTypeDefinitions.cpp; sourceTree = ""; }; + D591391B294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.CoreModule_1.cpp; sourceTree = ""; }; + D591391C294046A100C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UIModule_0.cpp; sourceTree = ""; }; + D591391D294046A100C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppReversePInvokeWrapperTable.cpp; sourceTree = ""; }; + D591391E294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.CoreModule_0.cpp; sourceTree = ""; }; + D591391F294046A100C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Diagnostics.StackTrace_0.cpp; sourceTree = ""; }; + D5913920294046A100C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.IMGUIModule_0.cpp; sourceTree = ""; }; + D5913921294046A100C6AD35 /* Il2CppInvokerTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppInvokerTable.cpp; sourceTree = ""; }; + D5913922294046A100C6AD35 /* Bulk_mscorlib_11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_11.cpp; sourceTree = ""; }; + D5913923294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_7Table.cpp; sourceTree = ""; }; + D5913924294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_6Table.cpp; sourceTree = ""; }; + D5913925294046A100C6AD35 /* Bulk_mscorlib_10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_10.cpp; sourceTree = ""; }; + D5913926294046A100C6AD35 /* Bulk_System.Configuration_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Configuration_0.cpp; sourceTree = ""; }; + D5913927294046A100C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.AnimationModule_0.cpp; sourceTree = ""; }; + D5913928294046A100C6AD35 /* Bulk_Generics_9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_9.cpp; sourceTree = ""; }; + D5913929294046A100C6AD35 /* Bulk_mscorlib_12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_12.cpp; sourceTree = ""; }; + D591392A294046A100C6AD35 /* Bulk_mscorlib_13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_13.cpp; sourceTree = ""; }; + D591392B294046A100C6AD35 /* Bulk_Generics_8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_Generics_8.cpp; sourceTree = ""; }; + D591392C294046A100C6AD35 /* Bulk_UnityEngine_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine_0.cpp; sourceTree = ""; }; + D591392D294046A100C6AD35 /* Bulk_UnityEngine.UI_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UI_0.cpp; sourceTree = ""; }; + D591392E294046A100C6AD35 /* UnresolvedVirtualCallStubs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnresolvedVirtualCallStubs.cpp; sourceTree = ""; }; + D591392F294046A100C6AD35 /* Bulk_mscorlib_17.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_17.cpp; sourceTree = ""; }; + D5913930294046A100C6AD35 /* Bulk_mscorlib_16.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_16.cpp; sourceTree = ""; }; + D5913931294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_19Table.cpp; sourceTree = ""; }; + D5913932294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_18Table.cpp; sourceTree = ""; }; + D5913933294046A100C6AD35 /* Bulk_UnityEngine.UI_1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UI_1.cpp; sourceTree = ""; }; + D5913934294046A100C6AD35 /* Bulk_UnityEngine.UI_3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UI_3.cpp; sourceTree = ""; }; + D5913935294046A100C6AD35 /* Il2CppGenericMethodDefinitions.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppGenericMethodDefinitions.cpp; sourceTree = ""; }; + D5913936294046A100C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_System.Globalization.Extensions_0.cpp; sourceTree = ""; }; + D5913937294046A100C6AD35 /* Bulk_mscorlib_14.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_14.cpp; sourceTree = ""; }; + D5913938294046A100C6AD35 /* Bulk_mscorlib_15.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_mscorlib_15.cpp; sourceTree = ""; }; + D5913939294046A100C6AD35 /* Bulk_Assembly-CSharp_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Bulk_Assembly-CSharp_0.cpp"; sourceTree = ""; }; + D591393A294046A100C6AD35 /* Bulk_netstandard_0.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_netstandard_0.cpp; sourceTree = ""; }; + D591393B294046A100C6AD35 /* Bulk_UnityEngine.UI_2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Bulk_UnityEngine.UI_2.cpp; sourceTree = ""; }; + D591393C294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_13Table.cpp; sourceTree = ""; }; + D591393D294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCompilerCalculateTypeValues_12Table.cpp; sourceTree = ""; }; + D59139A7294074DB00C6AD35 /* SimpleQRViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SimpleQRViewController.h; sourceTree = ""; }; + D59139A8294074DB00C6AD35 /* SimpleQRViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SimpleQRViewController.m; sourceTree = ""; }; + D59139A9294074DB00C6AD35 /* SimpleQRViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SimpleQRViewController.xib; sourceTree = ""; }; D59AB422292DBABA00714392 /* Unity-iPhone.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = "Unity-iPhone.entitlements"; path = "Unity-iPhone/Unity-iPhone.entitlements"; sourceTree = ""; }; D59AB423292DBACE00714392 /* CloudKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CloudKit.framework; path = System/Library/Frameworks/CloudKit.framework; sourceTree = SDKROOT; }; D59AB42C292E24DD00714392 /* UICKeyChainStore.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UICKeyChainStore.h; sourceTree = ""; }; @@ -621,7 +629,7 @@ 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { isa = PBXGroup; children = ( - D59137F5293F216100C6AD35 /* Data */, + D59138D22940468A00C6AD35 /* Data */, D59AB422292DBABA00714392 /* Unity-iPhone.entitlements */, D589C9B928B62D93002CAA34 /* cacert.pem */, D5F2CFD1287BF83C003C2B62 /* js */, @@ -813,6 +821,9 @@ D579209E292F3C94004DBD4F /* LBXScanNative.m */, D57920A0292F3D28004DBD4F /* LBXScanTypes.h */, D57920A1292F3D28004DBD4F /* LBXScanTypes.m */, + D59139A7294074DB00C6AD35 /* SimpleQRViewController.h */, + D59139A8294074DB00C6AD35 /* SimpleQRViewController.m */, + D59139A9294074DB00C6AD35 /* SimpleQRViewController.xib */, D57920A6292F4763004DBD4F /* QrCodeViewController.h */, D57920A7292F4763004DBD4F /* QrCodeViewController.m */, D57920A4292F4738004DBD4F /* QrCodeViewController.xib */, @@ -820,114 +831,114 @@ name = qr; sourceTree = ""; }; - D59137F7293F217A00C6AD35 /* Native */ = { + D59138D4294046A000C6AD35 /* Native */ = { isa = PBXGroup; children = ( - D59137F8293F217A00C6AD35 /* Bulk_Generics_3.cpp */, - D59137F9293F217A00C6AD35 /* Il2CppMethodPointerTable.cpp */, - D59137FA293F217A00C6AD35 /* Bulk_Generics_2.cpp */, - D59137FB293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp */, - D59137FC293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp */, - D59137FD293F217A00C6AD35 /* Il2CppInteropDataTable.cpp */, - D59137FE293F217A00C6AD35 /* Bulk_Generics_0.cpp */, - D59137FF293F217A00C6AD35 /* Bulk_Generics_1.cpp */, - D5913800293F217A00C6AD35 /* UnityICallRegistration.cpp */, - D5913801293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp */, - D5913802293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp */, - D5913803293F217A00C6AD35 /* GenericMethods1.cpp */, - D5913804293F217A00C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp */, - D5913805293F217A00C6AD35 /* Bulk_Generics_5.cpp */, - D5913806293F217A00C6AD35 /* Bulk_Generics_4.cpp */, - D5913807293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp */, - D5913808293F217A00C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp */, - D5913809293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp */, - D591380A293F217A00C6AD35 /* GenericMethods0.cpp */, - D591380B293F217A00C6AD35 /* GenericMethods2.cpp */, - D591380C293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp */, - D591380D293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp */, - D591380E293F217A00C6AD35 /* Bulk_System.Xml_0.cpp */, - D591380F293F217A00C6AD35 /* Il2CppGenericMethodPointerTable.cpp */, - D5913810293F217A00C6AD35 /* Bulk_Generics_6.cpp */, - D5913811293F217A00C6AD35 /* Il2CppGenericInstDefinitions.cpp */, - D5913812293F217A00C6AD35 /* Il2CppCodeRegistration.cpp */, - D5913813293F217A00C6AD35 /* Bulk_Generics_7.cpp */, - D5913814293F217A00C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp */, - D5913815293F217A00C6AD35 /* GenericMethods3.cpp */, - D5913816293F217A00C6AD35 /* Bulk_System.Core_0.cpp */, - D5913817293F217A00C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp */, - D5913818293F217A00C6AD35 /* Bulk_mscorlib_6.cpp */, - D5913819293F217A00C6AD35 /* Bulk_mscorlib_7.cpp */, - D591381A293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp */, - D591381B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp */, - D591381C293F217A00C6AD35 /* Bulk_mscorlib_5.cpp */, - D591381D293F217A00C6AD35 /* Bulk_mscorlib_4.cpp */, - D591381E293F217A00C6AD35 /* Il2CppAttributes.cpp */, - D591381F293F217A00C6AD35 /* Bulk_mscorlib_0.cpp */, - D5913820293F217A00C6AD35 /* Bulk_mscorlib_1.cpp */, - D5913821293F217A00C6AD35 /* Bulk_System_1.cpp */, - D5913822293F217A00C6AD35 /* Bulk_mscorlib_3.cpp */, - D5913823293F217A00C6AD35 /* Il2CppGenericClassTable.cpp */, - D5913824293F217A00C6AD35 /* Il2CppMetadataUsage.cpp */, - D5913825293F217A00C6AD35 /* UnityClassRegistration.cpp */, - D5913826293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp */, - D5913827293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp */, - D5913828293F217A00C6AD35 /* Il2CppGenericMethodTable.cpp */, - D5913829293F217A00C6AD35 /* Bulk_mscorlib_2.cpp */, - D591382A293F217A00C6AD35 /* Bulk_System_0.cpp */, - D591382B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp */, - D591382C293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp */, - D591382D293F217A00C6AD35 /* Bulk_Generics_11.cpp */, - D591382E293F217A00C6AD35 /* Bulk_Generics_10.cpp */, - D591382F293F217A00C6AD35 /* Bulk_Generics_12.cpp */, - D5913830293F217A00C6AD35 /* Il2CppGenericComDefinitions0.cpp */, - D5913831293F217A00C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp */, - D5913832293F217A00C6AD35 /* Bulk_Generics_13.cpp */, - D5913833293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp */, - D5913834293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp */, - D5913835293F217A00C6AD35 /* Il2CppMetadataRegistration.cpp */, - D5913836293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp */, - D5913837293F217A00C6AD35 /* Bulk_mscorlib_9.cpp */, - D5913838293F217A00C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp */, - D5913839293F217A00C6AD35 /* Bulk_Mono.Security_0.cpp */, - D591383A293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp */, - D591383B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp */, - D591383C293F217A00C6AD35 /* Bulk_mscorlib_8.cpp */, - D591383D293F217A00C6AD35 /* Il2CppTypeDefinitions.cpp */, - D591383E293F217A00C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp */, - D591383F293F217A00C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp */, - D5913840293F217A00C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp */, - D5913841293F217A00C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp */, - D5913842293F217A00C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp */, - D5913843293F217A00C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp */, - D5913844293F217A00C6AD35 /* Il2CppInvokerTable.cpp */, - D5913845293F217A00C6AD35 /* Bulk_mscorlib_11.cpp */, - D5913846293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp */, - D5913847293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp */, - D5913848293F217A00C6AD35 /* Bulk_mscorlib_10.cpp */, - D5913849293F217A00C6AD35 /* Bulk_System.Configuration_0.cpp */, - D591384A293F217A00C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp */, - D591384B293F217A00C6AD35 /* Bulk_Generics_9.cpp */, - D591384C293F217A00C6AD35 /* Bulk_mscorlib_12.cpp */, - D591384D293F217A00C6AD35 /* Bulk_mscorlib_13.cpp */, - D591384E293F217A00C6AD35 /* Bulk_Generics_8.cpp */, - D591384F293F217A00C6AD35 /* Bulk_UnityEngine_0.cpp */, - D5913850293F217A00C6AD35 /* Bulk_UnityEngine.UI_0.cpp */, - D5913851293F217A00C6AD35 /* UnresolvedVirtualCallStubs.cpp */, - D5913852293F217A00C6AD35 /* Bulk_mscorlib_17.cpp */, - D5913853293F217A00C6AD35 /* Bulk_mscorlib_16.cpp */, - D5913854293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp */, - D5913855293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp */, - D5913856293F217A00C6AD35 /* Bulk_UnityEngine.UI_1.cpp */, - D5913857293F217A00C6AD35 /* Bulk_UnityEngine.UI_3.cpp */, - D5913858293F217A00C6AD35 /* Il2CppGenericMethodDefinitions.cpp */, - D5913859293F217A00C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp */, - D591385A293F217A00C6AD35 /* Bulk_mscorlib_14.cpp */, - D591385B293F217A00C6AD35 /* Bulk_mscorlib_15.cpp */, - D591385C293F217A00C6AD35 /* Bulk_Assembly-CSharp_0.cpp */, - D591385D293F217A00C6AD35 /* Bulk_netstandard_0.cpp */, - D591385E293F217A00C6AD35 /* Bulk_UnityEngine.UI_2.cpp */, - D591385F293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp */, - D5913860293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp */, + D59138D5294046A000C6AD35 /* Bulk_Generics_3.cpp */, + D59138D6294046A000C6AD35 /* Il2CppMethodPointerTable.cpp */, + D59138D7294046A000C6AD35 /* Bulk_Generics_2.cpp */, + D59138D8294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp */, + D59138D9294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp */, + D59138DA294046A000C6AD35 /* Il2CppInteropDataTable.cpp */, + D59138DB294046A000C6AD35 /* Bulk_Generics_0.cpp */, + D59138DC294046A000C6AD35 /* Bulk_Generics_1.cpp */, + D59138DD294046A000C6AD35 /* UnityICallRegistration.cpp */, + D59138DE294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp */, + D59138DF294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp */, + D59138E0294046A000C6AD35 /* GenericMethods1.cpp */, + D59138E1294046A000C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp */, + D59138E2294046A000C6AD35 /* Bulk_Generics_5.cpp */, + D59138E3294046A000C6AD35 /* Bulk_Generics_4.cpp */, + D59138E4294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp */, + D59138E5294046A000C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp */, + D59138E6294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp */, + D59138E7294046A000C6AD35 /* GenericMethods0.cpp */, + D59138E8294046A000C6AD35 /* GenericMethods2.cpp */, + D59138E9294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp */, + D59138EA294046A000C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp */, + D59138EB294046A000C6AD35 /* Bulk_System.Xml_0.cpp */, + D59138EC294046A000C6AD35 /* Il2CppGenericMethodPointerTable.cpp */, + D59138ED294046A100C6AD35 /* Bulk_Generics_6.cpp */, + D59138EE294046A100C6AD35 /* Il2CppGenericInstDefinitions.cpp */, + D59138EF294046A100C6AD35 /* Il2CppCodeRegistration.cpp */, + D59138F0294046A100C6AD35 /* Bulk_Generics_7.cpp */, + D59138F1294046A100C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp */, + D59138F2294046A100C6AD35 /* GenericMethods3.cpp */, + D59138F3294046A100C6AD35 /* Bulk_System.Core_0.cpp */, + D59138F4294046A100C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp */, + D59138F5294046A100C6AD35 /* Bulk_mscorlib_6.cpp */, + D59138F6294046A100C6AD35 /* Bulk_mscorlib_7.cpp */, + D59138F7294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp */, + D59138F8294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp */, + D59138F9294046A100C6AD35 /* Bulk_mscorlib_5.cpp */, + D59138FA294046A100C6AD35 /* Bulk_mscorlib_4.cpp */, + D59138FB294046A100C6AD35 /* Il2CppAttributes.cpp */, + D59138FC294046A100C6AD35 /* Bulk_mscorlib_0.cpp */, + D59138FD294046A100C6AD35 /* Bulk_mscorlib_1.cpp */, + D59138FE294046A100C6AD35 /* Bulk_System_1.cpp */, + D59138FF294046A100C6AD35 /* Bulk_mscorlib_3.cpp */, + D5913900294046A100C6AD35 /* Il2CppGenericClassTable.cpp */, + D5913901294046A100C6AD35 /* Il2CppMetadataUsage.cpp */, + D5913902294046A100C6AD35 /* UnityClassRegistration.cpp */, + D5913903294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp */, + D5913904294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp */, + D5913905294046A100C6AD35 /* Il2CppGenericMethodTable.cpp */, + D5913906294046A100C6AD35 /* Bulk_mscorlib_2.cpp */, + D5913907294046A100C6AD35 /* Bulk_System_0.cpp */, + D5913908294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp */, + D5913909294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp */, + D591390A294046A100C6AD35 /* Bulk_Generics_11.cpp */, + D591390B294046A100C6AD35 /* Bulk_Generics_10.cpp */, + D591390C294046A100C6AD35 /* Bulk_Generics_12.cpp */, + D591390D294046A100C6AD35 /* Il2CppGenericComDefinitions0.cpp */, + D591390E294046A100C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp */, + D591390F294046A100C6AD35 /* Bulk_Generics_13.cpp */, + D5913910294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp */, + D5913911294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp */, + D5913912294046A100C6AD35 /* Il2CppMetadataRegistration.cpp */, + D5913913294046A100C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp */, + D5913914294046A100C6AD35 /* Bulk_mscorlib_9.cpp */, + D5913915294046A100C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp */, + D5913916294046A100C6AD35 /* Bulk_Mono.Security_0.cpp */, + D5913917294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp */, + D5913918294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp */, + D5913919294046A100C6AD35 /* Bulk_mscorlib_8.cpp */, + D591391A294046A100C6AD35 /* Il2CppTypeDefinitions.cpp */, + D591391B294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp */, + D591391C294046A100C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp */, + D591391D294046A100C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp */, + D591391E294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp */, + D591391F294046A100C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp */, + D5913920294046A100C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp */, + D5913921294046A100C6AD35 /* Il2CppInvokerTable.cpp */, + D5913922294046A100C6AD35 /* Bulk_mscorlib_11.cpp */, + D5913923294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp */, + D5913924294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp */, + D5913925294046A100C6AD35 /* Bulk_mscorlib_10.cpp */, + D5913926294046A100C6AD35 /* Bulk_System.Configuration_0.cpp */, + D5913927294046A100C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp */, + D5913928294046A100C6AD35 /* Bulk_Generics_9.cpp */, + D5913929294046A100C6AD35 /* Bulk_mscorlib_12.cpp */, + D591392A294046A100C6AD35 /* Bulk_mscorlib_13.cpp */, + D591392B294046A100C6AD35 /* Bulk_Generics_8.cpp */, + D591392C294046A100C6AD35 /* Bulk_UnityEngine_0.cpp */, + D591392D294046A100C6AD35 /* Bulk_UnityEngine.UI_0.cpp */, + D591392E294046A100C6AD35 /* UnresolvedVirtualCallStubs.cpp */, + D591392F294046A100C6AD35 /* Bulk_mscorlib_17.cpp */, + D5913930294046A100C6AD35 /* Bulk_mscorlib_16.cpp */, + D5913931294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp */, + D5913932294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp */, + D5913933294046A100C6AD35 /* Bulk_UnityEngine.UI_1.cpp */, + D5913934294046A100C6AD35 /* Bulk_UnityEngine.UI_3.cpp */, + D5913935294046A100C6AD35 /* Il2CppGenericMethodDefinitions.cpp */, + D5913936294046A100C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp */, + D5913937294046A100C6AD35 /* Bulk_mscorlib_14.cpp */, + D5913938294046A100C6AD35 /* Bulk_mscorlib_15.cpp */, + D5913939294046A100C6AD35 /* Bulk_Assembly-CSharp_0.cpp */, + D591393A294046A100C6AD35 /* Bulk_netstandard_0.cpp */, + D591393B294046A100C6AD35 /* Bulk_UnityEngine.UI_2.cpp */, + D591393C294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp */, + D591393D294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp */, ); name = Native; path = ../../../first/target/ios/Classes/Native; @@ -1007,6 +1018,8 @@ D5AB1D4228C0539600AA6AFA /* UIViewController+Wallet.mm */, D5538BA3287E9908000BDFB6 /* WalletEvent.cpp */, D5538BA4287E9908000BDFB6 /* WalletEvent.h */, + D59138CE294043C800C6AD35 /* ToastManager.h */, + D59138CF294043C800C6AD35 /* ToastManager.m */, ); path = Classes_cocos; sourceTree = ""; @@ -1022,7 +1035,7 @@ D82DCFB50E8000A5005D6AD8 /* Classes */ = { isa = PBXGroup; children = ( - D59137F7293F217A00C6AD35 /* Native */, + D59138D4294046A000C6AD35 /* Native */, 999475211A7BC3B100178130 /* UnityAds */, 8A5C148F174E662D0006EB36 /* PluginBase */, 8A3EDDC51615B7C1001839E9 /* UI */, @@ -1170,11 +1183,12 @@ files = ( 56C56C9817D6015200616839 /* Images.xcassets in Resources */, ED8C4EF082C57FADCB72325E /* LaunchScreen-iPhone.xib in Resources */, - D59137F6293F216100C6AD35 /* Data in Resources */, + D59138D32940468A00C6AD35 /* Data in Resources */, 35DD4E0BA71A8E4480E79156 /* LaunchScreen-iPhonePortrait.png in Resources */, D589C9BB28B62D93002CAA34 /* cacert.pem in Resources */, D5F2CFD2287BF83C003C2B62 /* js in Resources */, 7885412B8F5A921FCB052FCC /* LaunchScreen-iPhoneLandscape.png in Resources */, + D59139AB294074DB00C6AD35 /* SimpleQRViewController.xib in Resources */, B39C4391A8C22B442413FE00 /* LaunchScreen-iPad.xib in Resources */, C7134CE09546D0C147DAA3D3 /* LaunchScreen-iPad.png in Resources */, D57920A5292F4738004DBD4F /* QrCodeViewController.xib in Resources */, @@ -1259,178 +1273,180 @@ buildActionMask = 2147483647; files = ( D5F2CFB1287BF3BD003C2B62 /* AppDelegate.mm in Sources */, - D59138C1293F217B00C6AD35 /* Il2CppGenericMethodDefinitions.cpp in Sources */, - D59138B4293F217B00C6AD35 /* Bulk_Generics_9.cpp in Sources */, - D59138AC293F217B00C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp in Sources */, + D591399C294046A100C6AD35 /* Bulk_UnityEngine.UI_1.cpp in Sources */, + D591394F294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp in Sources */, D5AB1D3628BF782300AA6AFA /* QRCodeReaderView.m in Sources */, - D59138A9293F217B00C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp in Sources */, D59AB4AC292F325E00714392 /* LBXPermissionSetting.m in Sources */, - D591386E293F217A00C6AD35 /* Bulk_Generics_5.cpp in Sources */, + D5913986294046A100C6AD35 /* Il2CppReversePInvokeWrapperTable.cpp in Sources */, + D5913975294046A100C6AD35 /* Bulk_Generics_12.cpp in Sources */, + D591394C294046A100C6AD35 /* Bulk_Generics_4.cpp in Sources */, + D5913948294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp in Sources */, D82DCFC30E8000A5005D6AD8 /* main.mm in Sources */, + D5913990294046A100C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp in Sources */, + D5913997294046A100C6AD35 /* UnresolvedVirtualCallStubs.cpp in Sources */, + D59139A6294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp in Sources */, 8A793A081ED43EE100B44EF1 /* UnityViewControllerBase+iOS.mm in Sources */, + D5913984294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp in Sources */, D8A1C7280E80637F000160D3 /* RegisterMonoModules.cpp in Sources */, - D591386C293F217A00C6AD35 /* GenericMethods1.cpp in Sources */, - D59138AE293F217B00C6AD35 /* Bulk_mscorlib_11.cpp in Sources */, + D5913941294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp in Sources */, 8AA568AE1827DD79004969C7 /* WWWConnection.mm in Sources */, + D591394D294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp in Sources */, + D591394A294046A100C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp in Sources */, + D591396F294046A100C6AD35 /* Bulk_mscorlib_2.cpp in Sources */, + D591398E294046A100C6AD35 /* Bulk_mscorlib_10.cpp in Sources */, 56DBF99D15E3CDC9007A4A8D /* iPhone_Sensors.mm in Sources */, - D59138B2293F217B00C6AD35 /* Bulk_System.Configuration_0.cpp in Sources */, + D5913994294046A100C6AD35 /* Bulk_Generics_8.cpp in Sources */, 85E5623820F4F4D1001DFEF6 /* UnityView+Keyboard.mm in Sources */, - D5913868293F217A00C6AD35 /* Bulk_Generics_1.cpp in Sources */, - D5913873293F217A00C6AD35 /* GenericMethods0.cpp in Sources */, + D591399A294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp in Sources */, + D591398D294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp in Sources */, + D5913951294046A100C6AD35 /* GenericMethods2.cpp in Sources */, D56436462930ABAB00E2B633 /* UIUtils.m in Sources */, 8A3EDDC81615B7C1001839E9 /* SplashScreen.mm in Sources */, - D59138C9293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_12Table.cpp in Sources */, - D5913874293F217A00C6AD35 /* GenericMethods2.cpp in Sources */, + D591397F294046A100C6AD35 /* Bulk_Mono.Security_0.cpp in Sources */, + D591398A294046A100C6AD35 /* Il2CppInvokerTable.cpp in Sources */, + D5913999294046A100C6AD35 /* Bulk_mscorlib_16.cpp in Sources */, + D5913977294046A100C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp in Sources */, + D591396D294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp in Sources */, D5538BA5287E9908000BDFB6 /* WalletEvent.cpp in Sources */, - D59138BA293F217B00C6AD35 /* UnresolvedVirtualCallStubs.cpp in Sources */, - D5913895293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp in Sources */, + D591399E294046A100C6AD35 /* Il2CppGenericMethodDefinitions.cpp in Sources */, + D5913963294046A100C6AD35 /* Bulk_mscorlib_4.cpp in Sources */, + D5913989294046A100C6AD35 /* Bulk_UnityEngine.IMGUIModule_0.cpp in Sources */, + D591398F294046A100C6AD35 /* Bulk_System.Configuration_0.cpp in Sources */, + D591399F294046A100C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp in Sources */, 8AC71EC419E7FBA90027502F /* OrientationSupport.mm in Sources */, - D5913887293F217A00C6AD35 /* Il2CppAttributes.cpp in Sources */, 8A7939FD1ED2F53200B44EF1 /* UnityViewControllerBase.mm in Sources */, - D5913872293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_16Table.cpp in Sources */, - D5913884293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp in Sources */, - D591387A293F217A00C6AD35 /* Il2CppGenericInstDefinitions.cpp in Sources */, D5608AF929348B83007F146A /* NSString+Customer.m in Sources */, + D5913987294046A100C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp in Sources */, D5AB1D3528BF782300AA6AFA /* QRCodeReaderViewController.m in Sources */, - D591387C293F217A00C6AD35 /* Bulk_Generics_7.cpp in Sources */, - D59138B9293F217B00C6AD35 /* Bulk_UnityEngine.UI_0.cpp in Sources */, - D591388D293F217A00C6AD35 /* Il2CppMetadataUsage.cpp in Sources */, - D59138BF293F217B00C6AD35 /* Bulk_UnityEngine.UI_1.cpp in Sources */, + D5913971294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp in Sources */, 8A9FCB131617295F00C05364 /* ActivityIndicator.mm in Sources */, - D5913867293F217A00C6AD35 /* Bulk_Generics_0.cpp in Sources */, - D591389A293F217B00C6AD35 /* Bulk_UnityEngine.AudioModule_0.cpp in Sources */, + D591396A294046A100C6AD35 /* Il2CppMetadataUsage.cpp in Sources */, + D591395B294046A100C6AD35 /* GenericMethods3.cpp in Sources */, 8A8D90DA1A274A7800456C4E /* UnityAppController+UnityInterface.mm in Sources */, 8AA5D80217ABE9AF007B9910 /* UnityAppController+Rendering.mm in Sources */, D59AB433292E26CE00714392 /* DataManager.m in Sources */, 8A142DC61636943E00DD87CA /* Keyboard.mm in Sources */, - D591387B293F217A00C6AD35 /* Il2CppCodeRegistration.cpp in Sources */, - D5913880293F217A00C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp in Sources */, 8A0FED491649699200E9727D /* EAGLContextHelper.mm in Sources */, - D591387E293F217A00C6AD35 /* GenericMethods3.cpp in Sources */, - D5913865293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp in Sources */, - D59138C6293F217B00C6AD35 /* Bulk_netstandard_0.cpp in Sources */, + D591399B294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp in Sources */, + D5913988294046A100C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp in Sources */, + D5913945294046A100C6AD35 /* Bulk_Generics_1.cpp in Sources */, AAFE69D219F187C200638316 /* UnityViewControllerListener.mm in Sources */, + D5913942294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_8Table.cpp in Sources */, + D591397E294046A100C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp in Sources */, + D5913983294046A100C6AD35 /* Il2CppTypeDefinitions.cpp in Sources */, + D5913944294046A100C6AD35 /* Bulk_Generics_0.cpp in Sources */, + D5913961294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_11Table.cpp in Sources */, 8A1FFFAD16512A9000DD0934 /* GlesHelper.mm in Sources */, - D59138B5293F217B00C6AD35 /* Bulk_mscorlib_12.cpp in Sources */, - D5913871293F217A00C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp in Sources */, + D5913970294046A100C6AD35 /* Bulk_System_0.cpp in Sources */, 848031E11C5160D700FCEAB7 /* UnityReplayKit_Scripting.mm in Sources */, - D5913862293F217A00C6AD35 /* Il2CppMethodPointerTable.cpp in Sources */, + D5913985294046A100C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp in Sources */, D59AB4AD292F325E00714392 /* LBXPermissionPhotos.m in Sources */, + D5913957294046A100C6AD35 /* Il2CppGenericInstDefinitions.cpp in Sources */, 8A5E0B9116849D1800CBB6FE /* DisplayManager.mm in Sources */, - D59138C3293F217B00C6AD35 /* Bulk_mscorlib_14.cpp in Sources */, - D591389C293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp in Sources */, 8A367F5B16A6D36F0012ED11 /* CVTextureCache.mm in Sources */, - D591387D293F217A00C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp in Sources */, + D591397B294046A100C6AD35 /* Il2CppMetadataRegistration.cpp in Sources */, + D591395A294046A100C6AD35 /* Bulk_UnityEngine.SharedInternalsModule_0.cpp in Sources */, 1859EA9B19214E7B0022C3D3 /* MetalHelper.mm in Sources */, - D5913875293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp in Sources */, 8A16150C1A8E4362006FA788 /* FullScreenVideoPlayer.mm in Sources */, + D59139A3294046A100C6AD35 /* Bulk_netstandard_0.cpp in Sources */, + D5913978294046A100C6AD35 /* Bulk_Generics_13.cpp in Sources */, FC85CCBB16C3ED8000BAF7C7 /* CrashReporter.mm in Sources */, - D59138BB293F217B00C6AD35 /* Bulk_mscorlib_17.cpp in Sources */, 8AB3CB3E16D390BB00697AD5 /* VideoPlayer.mm in Sources */, - D5913870293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_17Table.cpp in Sources */, - D59138AF293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp in Sources */, - D59138BD293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_19Table.cpp in Sources */, - D59138A6293F217B00C6AD35 /* Il2CppTypeDefinitions.cpp in Sources */, D5AB1D3328BF782300AA6AFA /* QRToggleTorchButton.m in Sources */, - D5913864293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_9Table.cpp in Sources */, - D59138A4293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp in Sources */, - D5913891293F217B00C6AD35 /* Il2CppGenericMethodTable.cpp in Sources */, - D591389B293F217B00C6AD35 /* Bulk_Generics_13.cpp in Sources */, 8A793A071ED43EE100B44EF1 /* UnityView+tvOS.mm in Sources */, - D5913863293F217A00C6AD35 /* Bulk_Generics_2.cpp in Sources */, + D5913966294046A100C6AD35 /* Bulk_mscorlib_1.cpp in Sources */, 8A2AA93516E0978D001FB470 /* CMVideoSampling.mm in Sources */, - D591389E293F217B00C6AD35 /* Il2CppMetadataRegistration.cpp in Sources */, - D5913869293F217A00C6AD35 /* UnityICallRegistration.cpp in Sources */, - D5913877293F217A00C6AD35 /* Bulk_System.Xml_0.cpp in Sources */, + D5913981294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_1Table.cpp in Sources */, + D5913968294046A100C6AD35 /* Bulk_mscorlib_3.cpp in Sources */, + D5913958294046A100C6AD35 /* Il2CppCodeRegistration.cpp in Sources */, + D5913967294046A100C6AD35 /* Bulk_System_1.cpp in Sources */, + D591397C294046A100C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp in Sources */, + D591394B294046A100C6AD35 /* Bulk_Generics_5.cpp in Sources */, D5AB1D4328C0539600AA6AFA /* UIViewController+Wallet.mm in Sources */, + D5913996294046A100C6AD35 /* Bulk_UnityEngine.UI_0.cpp in Sources */, 8A851BA716FB2F6D00E911DB /* UnityView.mm in Sources */, - D59138AD293F217B00C6AD35 /* Il2CppInvokerTable.cpp in Sources */, - D591389D293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp in Sources */, + D5913954294046A100C6AD35 /* Bulk_System.Xml_0.cpp in Sources */, + D5913949294046A100C6AD35 /* GenericMethods1.cpp in Sources */, 8A851BAA16FB3AD000E911DB /* UnityAppController.mm in Sources */, - D5913896293F217B00C6AD35 /* Bulk_Generics_11.cpp in Sources */, - D5913886293F217A00C6AD35 /* Bulk_mscorlib_4.cpp in Sources */, 4E090A341F27885B0077B28D /* StoreReview.m in Sources */, - D591387F293F217A00C6AD35 /* Bulk_System.Core_0.cpp in Sources */, + D59139A4294046A100C6AD35 /* Bulk_UnityEngine.UI_2.cpp in Sources */, + D59139A2294046A100C6AD35 /* Bulk_Assembly-CSharp_0.cpp in Sources */, + D5913982294046A100C6AD35 /* Bulk_mscorlib_8.cpp in Sources */, 8AC74A9519B47FEF00019D38 /* AVCapture.mm in Sources */, - D591386B293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_2Table.cpp in Sources */, - D59138A0293F217B00C6AD35 /* Bulk_mscorlib_9.cpp in Sources */, - D59138C0293F217B00C6AD35 /* Bulk_UnityEngine.UI_3.cpp in Sources */, - D59138A5293F217B00C6AD35 /* Bulk_mscorlib_8.cpp in Sources */, - D5913876293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp in Sources */, - D591388F293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp in Sources */, - D59138C4293F217B00C6AD35 /* Bulk_mscorlib_15.cpp in Sources */, - D5913890293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_5Table.cpp in Sources */, + D5913947294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp in Sources */, + D591395F294046A100C6AD35 /* Bulk_mscorlib_7.cpp in Sources */, D59AB42F292E250500714392 /* UICKeyChainStore.m in Sources */, D5608AFD2934A75E007F146A /* NSData+Base64.m in Sources */, D59AB4AF292F325E00714392 /* LBXPermission.m in Sources */, + D591399D294046A100C6AD35 /* Bulk_UnityEngine.UI_3.cpp in Sources */, + D5913991294046A100C6AD35 /* Bulk_Generics_9.cpp in Sources */, + D591393E294046A100C6AD35 /* Bulk_Generics_3.cpp in Sources */, + D591398C294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_7Table.cpp in Sources */, + D591396B294046A100C6AD35 /* UnityClassRegistration.cpp in Sources */, D5608B002934C90B007F146A /* AppleSignIn.m in Sources */, - D5913894293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_20Table.cpp in Sources */, - D59138C7293F217B00C6AD35 /* Bulk_UnityEngine.UI_2.cpp in Sources */, - D5913897293F217B00C6AD35 /* Bulk_Generics_10.cpp in Sources */, - D59138AA293F217B00C6AD35 /* Bulk_UnityEngine.CoreModule_0.cpp in Sources */, + D591395E294046A100C6AD35 /* Bulk_mscorlib_6.cpp in Sources */, 8A793A091ED43EE100B44EF1 /* UnityViewControllerBase+tvOS.mm in Sources */, - D59138C5293F217B00C6AD35 /* Bulk_Assembly-CSharp_0.cpp in Sources */, - D5913893293F217B00C6AD35 /* Bulk_System_0.cpp in Sources */, - D5913883293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp in Sources */, - D5913889293F217A00C6AD35 /* Bulk_mscorlib_1.cpp in Sources */, - D59138A8293F217B00C6AD35 /* Bulk_UnityEngine.UIModule_0.cpp in Sources */, 8A6720A519EEB905006C92E0 /* InternalProfiler.cpp in Sources */, - D5913881293F217A00C6AD35 /* Bulk_mscorlib_6.cpp in Sources */, - D59138BE293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_18Table.cpp in Sources */, + D5913956294046A100C6AD35 /* Bulk_Generics_6.cpp in Sources */, 8A793A061ED43EE100B44EF1 /* UnityView+iOS.mm in Sources */, - D59138B0293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_6Table.cpp in Sources */, - D5913878293F217A00C6AD35 /* Il2CppGenericMethodPointerTable.cpp in Sources */, - D59138A7293F217B00C6AD35 /* Bulk_UnityEngine.CoreModule_1.cpp in Sources */, - D59138C8293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp in Sources */, - D59138B7293F217B00C6AD35 /* Bulk_Generics_8.cpp in Sources */, - D59138B8293F217B00C6AD35 /* Bulk_UnityEngine_0.cpp in Sources */, - D591386D293F217A00C6AD35 /* Bulk_UnityEngine.TextRenderingModule_0.cpp in Sources */, - D5913888293F217A00C6AD35 /* Bulk_mscorlib_0.cpp in Sources */, - D59138C2293F217B00C6AD35 /* Bulk_System.Globalization.Extensions_0.cpp in Sources */, - D591388C293F217A00C6AD35 /* Il2CppGenericClassTable.cpp in Sources */, - D59138B1293F217B00C6AD35 /* Bulk_mscorlib_10.cpp in Sources */, + D5913998294046A100C6AD35 /* Bulk_mscorlib_17.cpp in Sources */, + D5913950294046A100C6AD35 /* GenericMethods0.cpp in Sources */, + D5913953294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_22Table.cpp in Sources */, 8ADCE38B19C87177006F04F6 /* CameraCapture.mm in Sources */, + D591393F294046A100C6AD35 /* Il2CppMethodPointerTable.cpp in Sources */, + D5913972294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_21Table.cpp in Sources */, D57920A8292F4763004DBD4F /* QrCodeViewController.m in Sources */, + D5913969294046A100C6AD35 /* Il2CppGenericClassTable.cpp in Sources */, D59138CC293F486A00C6AD35 /* QRPhotoAlbumButton.m in Sources */, - D59138A1293F217B00C6AD35 /* Bulk_UnityEngine.GameCenterModule_0.cpp in Sources */, D57920A2292F3D28004DBD4F /* LBXScanTypes.m in Sources */, + D5913955294046A100C6AD35 /* Il2CppGenericMethodPointerTable.cpp in Sources */, D5AB1D3728BF782300AA6AFA /* QRCodeReader.m in Sources */, - D5913899293F217B00C6AD35 /* Il2CppGenericComDefinitions0.cpp in Sources */, + D5913940294046A100C6AD35 /* Bulk_Generics_2.cpp in Sources */, + D5913976294046A100C6AD35 /* Il2CppGenericComDefinitions0.cpp in Sources */, + D591397D294046A100C6AD35 /* Bulk_mscorlib_9.cpp in Sources */, + D5913952294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_23Table.cpp in Sources */, 8A4815C117A28E7F003FBFD5 /* UnityAppController+ViewHandling.mm in Sources */, - D591388A293F217A00C6AD35 /* Bulk_System_1.cpp in Sources */, - D591386F293F217A00C6AD35 /* Bulk_Generics_4.cpp in Sources */, - D5913892293F217B00C6AD35 /* Bulk_mscorlib_2.cpp in Sources */, D5F2D106287C12DD003C2B62 /* JcWallet.mm in Sources */, + D5913960294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_10Table.cpp in Sources */, + D59139A1294046A100C6AD35 /* Bulk_mscorlib_15.cpp in Sources */, + D5913965294046A100C6AD35 /* Bulk_mscorlib_0.cpp in Sources */, + D5913992294046A100C6AD35 /* Bulk_mscorlib_12.cpp in Sources */, D579209F292F3C94004DBD4F /* LBXScanNative.m in Sources */, 8A25E6D218D767E20006A227 /* Filesystem.mm in Sources */, - D591388B293F217A00C6AD35 /* Bulk_mscorlib_3.cpp in Sources */, - D59138AB293F217B00C6AD35 /* Bulk_System.Diagnostics.StackTrace_0.cpp in Sources */, + D591397A294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_15Table.cpp in Sources */, D5AB1D3428BF782300AA6AFA /* QRCameraSwitchButton.m in Sources */, - D5913866293F217A00C6AD35 /* Il2CppInteropDataTable.cpp in Sources */, + D59139AA294074DB00C6AD35 /* SimpleQRViewController.m in Sources */, + D5913959294046A100C6AD35 /* Bulk_Generics_7.cpp in Sources */, + D591394E294046A100C6AD35 /* Bulk_UnityEngine.Physics2DModule_0.cpp in Sources */, + D591398B294046A100C6AD35 /* Bulk_mscorlib_11.cpp in Sources */, D56436422930AAF700E2B633 /* UIView+Toast.m in Sources */, + D5913962294046A100C6AD35 /* Bulk_mscorlib_5.cpp in Sources */, 999475201A7BC3AE00178130 /* UnityAdsUnityWrapper.mm in Sources */, - D59138B6293F217B00C6AD35 /* Bulk_mscorlib_13.cpp in Sources */, - D5913882293F217A00C6AD35 /* Bulk_mscorlib_7.cpp in Sources */, - D5913879293F217A00C6AD35 /* Bulk_Generics_6.cpp in Sources */, + D5913974294046A100C6AD35 /* Bulk_Generics_10.cpp in Sources */, + D59139A0294046A100C6AD35 /* Bulk_mscorlib_14.cpp in Sources */, + D5913943294046A100C6AD35 /* Il2CppInteropDataTable.cpp in Sources */, + D5913979294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_14Table.cpp in Sources */, + D591395C294046A100C6AD35 /* Bulk_System.Core_0.cpp in Sources */, + D591395D294046A100C6AD35 /* Bulk_UnityEngine.PhysicsModule_0.cpp in Sources */, 8AF7755D1799329100341121 /* LifeCycleListener.mm in Sources */, - D59138B3293F217B00C6AD35 /* Bulk_UnityEngine.AnimationModule_0.cpp in Sources */, + D59138D0294043C800C6AD35 /* ToastManager.m in Sources */, + D5913993294046A100C6AD35 /* Bulk_mscorlib_13.cpp in Sources */, 8A5C1492174E662D0006EB36 /* RenderPluginDelegate.mm in Sources */, 8AF7756017997D2700341121 /* AppDelegateListener.mm in Sources */, - D59138A2293F217B00C6AD35 /* Bulk_Mono.Security_0.cpp in Sources */, + D591396C294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_4Table.cpp in Sources */, FC0B20A21B7A4F0B00FDFC55 /* OnDemandResources.mm in Sources */, + D5913980294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp in Sources */, + D5913946294046A100C6AD35 /* UnityICallRegistration.cpp in Sources */, + D591396E294046A100C6AD35 /* Il2CppGenericMethodTable.cpp in Sources */, + D5913964294046A100C6AD35 /* Il2CppAttributes.cpp in Sources */, D59AB4AE292F325E00714392 /* LBXPermissionCamera.m in Sources */, - D59138BC293F217B00C6AD35 /* Bulk_mscorlib_16.cpp in Sources */, - D591388E293F217A00C6AD35 /* UnityClassRegistration.cpp in Sources */, - D59138A3293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValues_0Table.cpp in Sources */, + D59139A5294046A100C6AD35 /* Il2CppCompilerCalculateTypeValues_13Table.cpp in Sources */, AAC3E38D1A68945900F6174A /* RegisterFeatures.cpp in Sources */, - D591389F293F217B00C6AD35 /* Il2CppCompilerCalculateTypeValuesTable.cpp in Sources */, + D5913973294046A100C6AD35 /* Bulk_Generics_11.cpp in Sources */, D5D9BAF9293477E700F18A7F /* UIViewController+QR.mm in Sources */, - D5913861293F217A00C6AD35 /* Bulk_Generics_3.cpp in Sources */, - D5913885293F217A00C6AD35 /* Bulk_mscorlib_5.cpp in Sources */, 84DC28F61C5137FE00BC67D7 /* UnityReplayKit.mm in Sources */, - D5913898293F217B00C6AD35 /* Bulk_Generics_12.cpp in Sources */, 8ACB801C177081D4005D0019 /* DeviceSettings.mm in Sources */, - D591386A293F217A00C6AD35 /* Il2CppCompilerCalculateTypeValues_3Table.cpp in Sources */, + D5913995294046A100C6AD35 /* Bulk_UnityEngine_0.cpp in Sources */, 03F528631B447098000F4FB8 /* Il2CppOptions.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/UserInterfaceState.xcuserstate b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/UserInterfaceState.xcuserstate index ff5fe7a..b5035b2 100644 Binary files a/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/UserInterfaceState.xcuserstate and b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist index 843b7d8..55f767a 100644 --- a/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -228,5 +228,117 @@ landmarkType = "7"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Expressions.xcexplist b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Expressions.xcexplist new file mode 100644 index 0000000..07d52a8 --- /dev/null +++ b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Expressions.xcexplist @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/js/main.js b/js/main.js index c9af6f9..3abd0c7 100644 --- a/js/main.js +++ b/js/main.js @@ -205,6 +205,14 @@ function sendErc20(funId, address, to, amount) { }); } +function showQRCode(funId, content) { + try { + jsb.showQRCode(funId, content); + return JSON.stringify({ errcode: 0, data: 1 }); + } catch (err) { + return JSON.stringify({ errcode: 1, errmsg: err }); + } +} function scanQRCode(funId, title) { console.log('scanQRCode: ' + title)