Showing
83 changed files
with
70 additions
and
483 deletions
No preview for this file type
No preview for this file type
No preview for this file type
... | @@ -48,4 +48,11 @@ | ... | @@ -48,4 +48,11 @@ |
48 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. | 48 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. |
49 | } | 49 | } |
50 | 50 | ||
51 | +- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url{ | ||
52 | + NSLog(@"hanldeOpenURL%@",url.path ); | ||
53 | + [[PoolSdk shareSDK] handleOpenurl:url]; | ||
54 | + return true; | ||
55 | +} | ||
56 | + | ||
57 | + | ||
51 | @end | 58 | @end | ... | ... |
1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> | 1 | <?xml version="1.0" encoding="UTF-8" standalone="no"?> |
2 | -<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="6211" systemVersion="14A298i" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="vXZ-lx-hvc"> | 2 | +<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="8191" systemVersion="14F27" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="vXZ-lx-hvc"> |
3 | <dependencies> | 3 | <dependencies> |
4 | - <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="6204"/> | 4 | + <deployment identifier="iOS"/> |
5 | + <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="8154"/> | ||
5 | </dependencies> | 6 | </dependencies> |
6 | <scenes> | 7 | <scenes> |
7 | <!--View Controller--> | 8 | <!--View Controller--> |
8 | <scene sceneID="ufC-wZ-h7g"> | 9 | <scene sceneID="ufC-wZ-h7g"> |
9 | <objects> | 10 | <objects> |
10 | - <viewController id="vXZ-lx-hvc" customClass="ViewController" customModuleProvider="" sceneMemberID="viewController"> | 11 | + <viewController id="vXZ-lx-hvc" customClass="ViewController" sceneMemberID="viewController"> |
11 | <layoutGuides> | 12 | <layoutGuides> |
12 | <viewControllerLayoutGuide type="top" id="jyV-Pf-zRb"/> | 13 | <viewControllerLayoutGuide type="top" id="jyV-Pf-zRb"/> |
13 | <viewControllerLayoutGuide type="bottom" id="2fi-mo-0CV"/> | 14 | <viewControllerLayoutGuide type="bottom" id="2fi-mo-0CV"/> | ... | ... |
... | @@ -18,6 +18,17 @@ | ... | @@ -18,6 +18,17 @@ |
18 | <string>1.0</string> | 18 | <string>1.0</string> |
19 | <key>CFBundleSignature</key> | 19 | <key>CFBundleSignature</key> |
20 | <string>????</string> | 20 | <string>????</string> |
21 | + <key>CFBundleURLTypes</key> | ||
22 | + <array> | ||
23 | + <dict> | ||
24 | + <key>CFBundleTypeRole</key> | ||
25 | + <string>Editor</string> | ||
26 | + <key>CFBundleURLSchemes</key> | ||
27 | + <array> | ||
28 | + <string>i9133public</string> | ||
29 | + </array> | ||
30 | + </dict> | ||
31 | + </array> | ||
21 | <key>CFBundleVersion</key> | 32 | <key>CFBundleVersion</key> |
22 | <string>1</string> | 33 | <string>1</string> |
23 | <key>LSRequiresIPhoneOS</key> | 34 | <key>LSRequiresIPhoneOS</key> | ... | ... |
No preview for this file type
... | @@ -8,7 +8,9 @@ | ... | @@ -8,7 +8,9 @@ |
8 | 8 | ||
9 | 9 | ||
10 | #include "UnionInterface.h" | 10 | #include "UnionInterface.h" |
11 | -@interface Interface : NSObject <UnionInterface> | 11 | +#import <SafariServices/SafariServices.h> |
12 | +@interface Interface : NSObject <UnionInterface,SFSafariViewControllerDelegate> | ||
12 | @property(nonatomic, strong)UIViewController *controller; | 13 | @property(nonatomic, strong)UIViewController *controller; |
13 | 14 | ||
15 | + | ||
14 | @end | 16 | @end |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -18,6 +18,7 @@ | ... | @@ -18,6 +18,7 @@ |
18 | - (void)startCheck:(PoolLoginInfo *)loginInfo; | 18 | - (void)startCheck:(PoolLoginInfo *)loginInfo; |
19 | - (void) createOrder:(PoolCreateOrderInfo *)payInfo; | 19 | - (void) createOrder:(PoolCreateOrderInfo *)payInfo; |
20 | - (void) reportOpen; | 20 | - (void) reportOpen; |
21 | +- (void)handleFirstOpenApp:(NSString*) path; | ||
21 | - (void) reportEnter:(PoolReportInfo *)reInfo; | 22 | - (void) reportEnter:(PoolReportInfo *)reInfo; |
22 | - (void) report:(NSString *)_action :(PoolReportInfo *)reInfo; | 23 | - (void) report:(NSString *)_action :(PoolReportInfo *)reInfo; |
23 | - (void)sendNotice:(PoolSDKNotificationType)notiType | 24 | - (void)sendNotice:(PoolSDKNotificationType)notiType | ... | ... |
... | @@ -26,6 +26,6 @@ | ... | @@ -26,6 +26,6 @@ |
26 | 26 | ||
27 | - (NSString *)getValueByKey:(NSString *) key; | 27 | - (NSString *)getValueByKey:(NSString *) key; |
28 | 28 | ||
29 | - | 29 | +- (void) updateC1C2Value:(NSString *)c1 c2:(NSString *)c2; |
30 | 30 | ||
31 | @end | 31 | @end |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -21,10 +21,10 @@ | ... | @@ -21,10 +21,10 @@ |
21 | @property(nonatomic, strong)NSString *openId; | 21 | @property(nonatomic, strong)NSString *openId; |
22 | 22 | ||
23 | 23 | ||
24 | -#define REPORT_URL @"http://public.sdk.gzyouai.com:9030/sdk/statistic" | 24 | +#define REPORT_URL @"http://public.sdk.gzyouai.com:9030/sdk/statistic"//@"http://10.200.201.230:9001/sdk/statistic" |
25 | -#define REPORT_OPEN @"OPEN" | 25 | +#define REPORT_OPEN @"open" |
26 | -#define REPORT_ENTER @"ENTER" | 26 | +#define REPORT_ENTER @"enter" |
27 | -#define REPORT_CREATEROLE @"CREATEROLE" | 27 | +#define REPORT_CREATEROLE @"createrole" |
28 | -#define REPORT_ROLEUPGRADE @"ROLEUPGRADE" | 28 | +#define REPORT_ROLEUPGRADE @"roleupgrade" |
29 | 29 | ||
30 | @end | 30 | @end | ... | ... |
... | @@ -38,8 +38,10 @@ | ... | @@ -38,8 +38,10 @@ |
38 | */ | 38 | */ |
39 | - (void)SDKgotoUserCenter; | 39 | - (void)SDKgotoUserCenter; |
40 | 40 | ||
41 | +- (void)viewDidAppear; | ||
42 | + | ||
41 | /** | 43 | /** |
42 | - 用户中心 | 44 | + 提交数据 |
43 | */ | 45 | */ |
44 | - (void)SDKreport:(PoolReportInfo *) reportInfo; | 46 | - (void)SDKreport:(PoolReportInfo *) reportInfo; |
45 | 47 | ... | ... |
No preview for this file type
No preview for this file type
... | @@ -33,8 +33,6 @@ | ... | @@ -33,8 +33,6 @@ |
33 | [button2 addTarget:self action:@selector(toggleButton:) forControlEvents: UIControlEventTouchUpInside]; | 33 | [button2 addTarget:self action:@selector(toggleButton:) forControlEvents: UIControlEventTouchUpInside]; |
34 | [self.view addSubview:button2]; | 34 | [self.view addSubview:button2]; |
35 | 35 | ||
36 | - | ||
37 | - | ||
38 | UIButton *button4 = [UIButton buttonWithType:UIButtonTypeCustom]; | 36 | UIButton *button4 = [UIButton buttonWithType:UIButtonTypeCustom]; |
39 | [button4 setTitle:@"充值" forState:UIControlStateNormal]; | 37 | [button4 setTitle:@"充值" forState:UIControlStateNormal]; |
40 | button4.frame = CGRectMake(150.0f, 50.0f, 50.0f, 40.0f); | 38 | button4.frame = CGRectMake(150.0f, 50.0f, 50.0f, 40.0f); |
... | @@ -51,13 +49,15 @@ | ... | @@ -51,13 +49,15 @@ |
51 | [self.view addSubview:button6]; | 49 | [self.view addSubview:button6]; |
52 | 50 | ||
53 | 51 | ||
54 | - | ||
55 | [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveSDKMessage:) name:poolSDK_Notification object:nil]; | 52 | [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveSDKMessage:) name:poolSDK_Notification object:nil]; |
56 | } | 53 | } |
57 | 54 | ||
55 | +-(void)viewDidAppear:(BOOL)animated{ | ||
56 | + [super viewDidAppear:animated]; | ||
57 | + [[PoolSdk shareSDK] viewDidAppear]; | ||
58 | +} | ||
58 | 59 | ||
59 | - (void) toggleButton: (UIButton *) button | 60 | - (void) toggleButton: (UIButton *) button |
60 | - | ||
61 | { | 61 | { |
62 | 62 | ||
63 | // if (isOn = !isOn) | 63 | // if (isOn = !isOn) | ... | ... |
... | @@ -12,8 +12,8 @@ | ... | @@ -12,8 +12,8 @@ |
12 | 12 | ||
13 | "gamechannelid": "channelId", | 13 | "gamechannelid": "channelId", |
14 | "custom": "custom", | 14 | "custom": "custom", |
15 | -"c2": "c2", | 15 | +"c2": "12356", |
16 | -"c1": "c1", | 16 | +"c1": "65321", |
17 | "loginCheckUrl": "http://183.57.76.181:9010/logincheck/check", | 17 | "loginCheckUrl": "http://183.57.76.181:9010/logincheck/check", |
18 | "payorderurl": "http://183.57.76.181:9020/paycheck/create", | 18 | "payorderurl": "http://183.57.76.181:9020/paycheck/create", |
19 | "paycheckurl": "http://183.57.76.181:9020/paycheck/confirm" | 19 | "paycheckurl": "http://183.57.76.181:9020/paycheck/confirm" | ... | ... |
... | @@ -7,6 +7,7 @@ | ... | @@ -7,6 +7,7 @@ |
7 | objects = { | 7 | objects = { |
8 | 8 | ||
9 | /* Begin PBXBuildFile section */ | 9 | /* Begin PBXBuildFile section */ |
10 | + 8409E5F01E7BD0D20098B616 /* PoolSdk.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8409E5EF1E7BD0D20098B616 /* PoolSdk.framework */; settings = {ASSET_TAGS = (); }; }; | ||
10 | 8423DFBF1E63D58E00FF910D /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFBE1E63D58E00FF910D /* Security.framework */; }; | 11 | 8423DFBF1E63D58E00FF910D /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFBE1E63D58E00FF910D /* Security.framework */; }; |
11 | 8423DFC11E63D59600FF910D /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFC01E63D59600FF910D /* CoreTelephony.framework */; }; | 12 | 8423DFC11E63D59600FF910D /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFC01E63D59600FF910D /* CoreTelephony.framework */; }; |
12 | 8423DFC31E63D59F00FF910D /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFC21E63D59F00FF910D /* SystemConfiguration.framework */; }; | 13 | 8423DFC31E63D59F00FF910D /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFC21E63D59F00FF910D /* SystemConfiguration.framework */; }; |
... | @@ -23,8 +24,6 @@ | ... | @@ -23,8 +24,6 @@ |
23 | 8423DFDD1E63E0FA00FF910D /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFDC1E63E0FA00FF910D /* AlipaySDK.framework */; settings = {ASSET_TAGS = (); }; }; | 24 | 8423DFDD1E63E0FA00FF910D /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFDC1E63E0FA00FF910D /* AlipaySDK.framework */; settings = {ASSET_TAGS = (); }; }; |
24 | 8423DFE31E63E2BE00FF910D /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 8423DFE21E63E2BE00FF910D /* AlipaySDK.bundle */; settings = {ASSET_TAGS = (); }; }; | 25 | 8423DFE31E63E2BE00FF910D /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 8423DFE21E63E2BE00FF910D /* AlipaySDK.bundle */; settings = {ASSET_TAGS = (); }; }; |
25 | 8423DFEB1E640A7600FF910D /* YouaiSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFEA1E640A7600FF910D /* YouaiSDK.framework */; settings = {ASSET_TAGS = (); }; }; | 26 | 8423DFEB1E640A7600FF910D /* YouaiSDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFEA1E640A7600FF910D /* YouaiSDK.framework */; settings = {ASSET_TAGS = (); }; }; |
26 | - 8423DFEF1E640BA800FF910D /* PoolSdk.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8423DFEE1E640BA800FF910D /* PoolSdk.framework */; settings = {ASSET_TAGS = (); }; }; | ||
27 | - 84398BFA1C4C83EC0082D774 /* PoolSdk.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 84398BF11C4C7FC20082D774 /* PoolSdk.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; | ||
28 | 84E6D6391E641298008A3D92 /* pool_setting in Resources */ = {isa = PBXBuildFile; fileRef = 84E6D6381E641298008A3D92 /* pool_setting */; settings = {ASSET_TAGS = (); }; }; | 27 | 84E6D6391E641298008A3D92 /* pool_setting in Resources */ = {isa = PBXBuildFile; fileRef = 84E6D6381E641298008A3D92 /* pool_setting */; settings = {ASSET_TAGS = (); }; }; |
29 | BB5F3C8E1C1811BC00DA339D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = BB5F3C8D1C1811BC00DA339D /* main.m */; }; | 28 | BB5F3C8E1C1811BC00DA339D /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = BB5F3C8D1C1811BC00DA339D /* main.m */; }; |
30 | BB5F3C971C1811BC00DA339D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BB5F3C951C1811BC00DA339D /* Main.storyboard */; }; | 29 | BB5F3C971C1811BC00DA339D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = BB5F3C951C1811BC00DA339D /* Main.storyboard */; }; |
... | @@ -51,7 +50,6 @@ | ... | @@ -51,7 +50,6 @@ |
51 | dstPath = ""; | 50 | dstPath = ""; |
52 | dstSubfolderSpec = 10; | 51 | dstSubfolderSpec = 10; |
53 | files = ( | 52 | files = ( |
54 | - 84398BFA1C4C83EC0082D774 /* PoolSdk.framework in Embed Frameworks */, | ||
55 | ); | 53 | ); |
56 | name = "Embed Frameworks"; | 54 | name = "Embed Frameworks"; |
57 | runOnlyForDeploymentPostprocessing = 0; | 55 | runOnlyForDeploymentPostprocessing = 0; |
... | @@ -59,6 +57,7 @@ | ... | @@ -59,6 +57,7 @@ |
59 | /* End PBXCopyFilesBuildPhase section */ | 57 | /* End PBXCopyFilesBuildPhase section */ |
60 | 58 | ||
61 | /* Begin PBXFileReference section */ | 59 | /* Begin PBXFileReference section */ |
60 | + 8409E5EF1E7BD0D20098B616 /* PoolSdk.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = PoolSdk.framework; sourceTree = "<group>"; }; | ||
62 | 8423DFBE1E63D58E00FF910D /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; | 61 | 8423DFBE1E63D58E00FF910D /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; |
63 | 8423DFC01E63D59600FF910D /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; }; | 62 | 8423DFC01E63D59600FF910D /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; }; |
64 | 8423DFC21E63D59F00FF910D /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; }; | 63 | 8423DFC21E63D59F00FF910D /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; }; |
... | @@ -75,8 +74,6 @@ | ... | @@ -75,8 +74,6 @@ |
75 | 8423DFDC1E63E0FA00FF910D /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AlipaySDK.framework; sourceTree = "<group>"; }; | 74 | 8423DFDC1E63E0FA00FF910D /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AlipaySDK.framework; sourceTree = "<group>"; }; |
76 | 8423DFE21E63E2BE00FF910D /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; }; | 75 | 8423DFE21E63E2BE00FF910D /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; }; |
77 | 8423DFEA1E640A7600FF910D /* YouaiSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = YouaiSDK.framework; sourceTree = "<group>"; }; | 76 | 8423DFEA1E640A7600FF910D /* YouaiSDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = YouaiSDK.framework; sourceTree = "<group>"; }; |
78 | - 8423DFEE1E640BA800FF910D /* PoolSdk.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = PoolSdk.framework; sourceTree = "<group>"; }; | ||
79 | - 84398BF11C4C7FC20082D774 /* PoolSdk.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PoolSdk.framework; path = /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework; sourceTree = "<absolute>"; }; | ||
80 | 84E6D6381E641298008A3D92 /* pool_setting */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pool_setting; sourceTree = "<group>"; }; | 77 | 84E6D6381E641298008A3D92 /* pool_setting */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = pool_setting; sourceTree = "<group>"; }; |
81 | BB5F3C881C1811BC00DA339D /* PoolSdk_i9133_Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PoolSdk_i9133_Demo.app; sourceTree = BUILT_PRODUCTS_DIR; }; | 78 | BB5F3C881C1811BC00DA339D /* PoolSdk_i9133_Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PoolSdk_i9133_Demo.app; sourceTree = BUILT_PRODUCTS_DIR; }; |
82 | BB5F3C8C1C1811BC00DA339D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | 79 | BB5F3C8C1C1811BC00DA339D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; |
... | @@ -106,7 +103,7 @@ | ... | @@ -106,7 +103,7 @@ |
106 | 8423DFCF1E63D5CA00FF910D /* CoreMotion.framework in Frameworks */, | 103 | 8423DFCF1E63D5CA00FF910D /* CoreMotion.framework in Frameworks */, |
107 | 8423DFCD1E63D5C300FF910D /* UIKit.framework in Frameworks */, | 104 | 8423DFCD1E63D5C300FF910D /* UIKit.framework in Frameworks */, |
108 | 8423DFCB1E63D5BD00FF910D /* CoreGraphics.framework in Frameworks */, | 105 | 8423DFCB1E63D5BD00FF910D /* CoreGraphics.framework in Frameworks */, |
109 | - 8423DFEF1E640BA800FF910D /* PoolSdk.framework in Frameworks */, | 106 | + 8409E5F01E7BD0D20098B616 /* PoolSdk.framework in Frameworks */, |
110 | 8423DFC91E63D5B600FF910D /* CoreText.framework in Frameworks */, | 107 | 8423DFC91E63D5B600FF910D /* CoreText.framework in Frameworks */, |
111 | 8423DFC71E63D5AE00FF910D /* QuartzCore.framework in Frameworks */, | 108 | 8423DFC71E63D5AE00FF910D /* QuartzCore.framework in Frameworks */, |
112 | 8423DFC51E63D5A500FF910D /* Foundation.framework in Frameworks */, | 109 | 8423DFC51E63D5A500FF910D /* Foundation.framework in Frameworks */, |
... | @@ -160,8 +157,8 @@ | ... | @@ -160,8 +157,8 @@ |
160 | BB5F3C8A1C1811BC00DA339D /* Demo */ = { | 157 | BB5F3C8A1C1811BC00DA339D /* Demo */ = { |
161 | isa = PBXGroup; | 158 | isa = PBXGroup; |
162 | children = ( | 159 | children = ( |
160 | + 8409E5EF1E7BD0D20098B616 /* PoolSdk.framework */, | ||
163 | 84E6D6381E641298008A3D92 /* pool_setting */, | 161 | 84E6D6381E641298008A3D92 /* pool_setting */, |
164 | - 8423DFEE1E640BA800FF910D /* PoolSdk.framework */, | ||
165 | 8423DFEA1E640A7600FF910D /* YouaiSDK.framework */, | 162 | 8423DFEA1E640A7600FF910D /* YouaiSDK.framework */, |
166 | 8423DFE21E63E2BE00FF910D /* AlipaySDK.bundle */, | 163 | 8423DFE21E63E2BE00FF910D /* AlipaySDK.bundle */, |
167 | 8423DFDC1E63E0FA00FF910D /* AlipaySDK.framework */, | 164 | 8423DFDC1E63E0FA00FF910D /* AlipaySDK.framework */, |
... | @@ -433,16 +430,18 @@ | ... | @@ -433,16 +430,18 @@ |
433 | buildSettings = { | 430 | buildSettings = { |
434 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | 431 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
435 | CODE_SIGN_IDENTITY = "iPhone Developer: you ai (2988AT63RU)"; | 432 | CODE_SIGN_IDENTITY = "iPhone Developer: you ai (2988AT63RU)"; |
433 | + ENABLE_BITCODE = NO; | ||
436 | FRAMEWORK_SEARCH_PATHS = ( | 434 | FRAMEWORK_SEARCH_PATHS = ( |
437 | "$(inherited)", | 435 | "$(inherited)", |
438 | "$(PROJECT_DIR)/Demo", | 436 | "$(PROJECT_DIR)/Demo", |
439 | "$(PROJECT_DIR)/poolsdk_file/Demo", | 437 | "$(PROJECT_DIR)/poolsdk_file/Demo", |
440 | ); | 438 | ); |
441 | INFOPLIST_FILE = Demo/Info.plist; | 439 | INFOPLIST_FILE = Demo/Info.plist; |
442 | - IPHONEOS_DEPLOYMENT_TARGET = 7.0; | 440 | + IPHONEOS_DEPLOYMENT_TARGET = 7.1; |
443 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; | 441 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; |
444 | ONLY_ACTIVE_ARCH = YES; | 442 | ONLY_ACTIVE_ARCH = YES; |
445 | PRODUCT_NAME = PoolSdk_i9133_Demo; | 443 | PRODUCT_NAME = PoolSdk_i9133_Demo; |
444 | + PROVISIONING_PROFILE = "e6d180fd-5532-4218-bf56-0c1afa8ea0b4"; | ||
446 | TARGETED_DEVICE_FAMILY = 1; | 445 | TARGETED_DEVICE_FAMILY = 1; |
447 | VALID_ARCHS = "arm64 armv7"; | 446 | VALID_ARCHS = "arm64 armv7"; |
448 | }; | 447 | }; |
... | @@ -453,16 +452,18 @@ | ... | @@ -453,16 +452,18 @@ |
453 | buildSettings = { | 452 | buildSettings = { |
454 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | 453 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; |
455 | CODE_SIGN_IDENTITY = "iPhone Developer: you ai (2988AT63RU)"; | 454 | CODE_SIGN_IDENTITY = "iPhone Developer: you ai (2988AT63RU)"; |
455 | + ENABLE_BITCODE = NO; | ||
456 | FRAMEWORK_SEARCH_PATHS = ( | 456 | FRAMEWORK_SEARCH_PATHS = ( |
457 | "$(inherited)", | 457 | "$(inherited)", |
458 | "$(PROJECT_DIR)/Demo", | 458 | "$(PROJECT_DIR)/Demo", |
459 | "$(PROJECT_DIR)/poolsdk_file/Demo", | 459 | "$(PROJECT_DIR)/poolsdk_file/Demo", |
460 | ); | 460 | ); |
461 | INFOPLIST_FILE = Demo/Info.plist; | 461 | INFOPLIST_FILE = Demo/Info.plist; |
462 | - IPHONEOS_DEPLOYMENT_TARGET = 7.0; | 462 | + IPHONEOS_DEPLOYMENT_TARGET = 7.1; |
463 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; | 463 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; |
464 | ONLY_ACTIVE_ARCH = YES; | 464 | ONLY_ACTIVE_ARCH = YES; |
465 | PRODUCT_NAME = PoolSdk_i9133_Demo; | 465 | PRODUCT_NAME = PoolSdk_i9133_Demo; |
466 | + PROVISIONING_PROFILE = "e6d180fd-5532-4218-bf56-0c1afa8ea0b4"; | ||
466 | TARGETED_DEVICE_FAMILY = 1; | 467 | TARGETED_DEVICE_FAMILY = 1; |
467 | VALID_ARCHS = "arm64 armv7"; | 468 | VALID_ARCHS = "arm64 armv7"; |
468 | }; | 469 | }; | ... | ... |
No preview for this file type
PoolSdk_i9133_Demo/build/.DS_Store
deleted
100644 → 0
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
PoolSdk_i9133_Demo/build/Demo.build/Release-iphoneos/Demo.build/Base.lproj/.DS_Store
deleted
100644 → 0
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
PoolSdk_i9133_Demo/build/Demo.build/Release-iphoneos/Demo.build/Demo-all-target-headers.hmap
deleted
100644 → 0
No preview for this file type
PoolSdk_i9133_Demo/build/Demo.build/Release-iphoneos/Demo.build/Demo-generated-files.hmap
deleted
100644 → 0
No preview for this file type
PoolSdk_i9133_Demo/build/Demo.build/Release-iphoneos/Demo.build/Demo-own-target-headers.hmap
deleted
100644 → 0
No preview for this file type
PoolSdk_i9133_Demo/build/Demo.build/Release-iphoneos/Demo.build/Demo-project-headers.hmap
deleted
100644 → 0
No preview for this file type
1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
2 | -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
3 | -<plist version="1.0"> | ||
4 | -<dict> | ||
5 | - <key>application-identifier</key> | ||
6 | - <string>94U2MA6SJK.com.mango.ios.fytx</string> | ||
7 | - <key>com.apple.developer.team-identifier</key> | ||
8 | - <string>94U2MA6SJK</string> | ||
9 | - <key>get-task-allow</key> | ||
10 | - <true/> | ||
11 | - <key>keychain-access-groups</key> | ||
12 | - <array> | ||
13 | - <string>94U2MA6SJK.com.mango.ios.fytx</string> | ||
14 | - </array> | ||
15 | -</dict> | ||
16 | -</plist> |
No preview for this file type
1 | -dependencies: \ | ||
2 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/AppDelegate.m \ | ||
3 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/AppDelegate.h \ | ||
4 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/ViewController.h \ | ||
5 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/poolsdk_file/Demo/PoolSdk.h \ | ||
6 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolCreateOrderInfo.h \ | ||
7 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolBaseModel.h \ | ||
8 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/OtherSetting.h \ | ||
9 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolNotification.h \ | ||
10 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolLoginInfo.h \ | ||
11 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolConfig.h \ | ||
12 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolReportInfo.h |
No preview for this file type
No preview for this file type
1 | -/Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/build/Demo.build/Release-iphoneos/Demo.build/Objects-normal/armv7/SDKInterface.o | ||
2 | -/Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/build/Demo.build/Release-iphoneos/Demo.build/Objects-normal/armv7/PoolSdk.o | ||
3 | -/Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/build/Demo.build/Release-iphoneos/Demo.build/Objects-normal/armv7/ViewController.o | ||
4 | -/Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/build/Demo.build/Release-iphoneos/Demo.build/Objects-normal/armv7/AppDelegate.o | ||
5 | -/Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/build/Demo.build/Release-iphoneos/Demo.build/Objects-normal/armv7/main.o |
No preview for this file type
1 | -dependencies: \ | ||
2 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/poolsdk_file/Demo/PoolSdk.m \ | ||
3 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/poolsdk_file/Demo/PoolSdk.h \ | ||
4 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolCreateOrderInfo.h \ | ||
5 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolBaseModel.h \ | ||
6 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/OtherSetting.h \ | ||
7 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolNotification.h \ | ||
8 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolLoginInfo.h \ | ||
9 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolConfig.h \ | ||
10 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolReportInfo.h \ | ||
11 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/poolsdk_file/Demo/SDKInterface.h \ | ||
12 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/Interface.h \ | ||
13 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/UnionInterface.h \ | ||
14 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolChecker.h \ | ||
15 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolPayInfo.h |
No preview for this file type
No preview for this file type
1 | -dependencies: \ | ||
2 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/poolsdk_file/Demo/SDKInterface.m \ | ||
3 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/poolsdk_file/Demo/SDKInterface.h \ | ||
4 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/Interface.h \ | ||
5 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/UnionInterface.h \ | ||
6 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolCreateOrderInfo.h \ | ||
7 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolBaseModel.h \ | ||
8 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/OtherSetting.h \ | ||
9 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolReportInfo.h \ | ||
10 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolConfig.h |
No preview for this file type
No preview for this file type
1 | -dependencies: \ | ||
2 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/ViewController.m \ | ||
3 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/ViewController.h \ | ||
4 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/poolsdk_file/Demo/PoolSdk.h \ | ||
5 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolCreateOrderInfo.h \ | ||
6 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolBaseModel.h \ | ||
7 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/OtherSetting.h \ | ||
8 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolNotification.h \ | ||
9 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolLoginInfo.h \ | ||
10 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolConfig.h \ | ||
11 | - /Users/xuguohong/Documents/youai_foolsdk_ios/PoolSdk_Demo/Demo/PoolSdk.framework/Headers/PoolReportInfo.h |
No preview for this file type
No preview for this file type
No preview for this file type
PoolSdk_i9133_Demo/build/Demo.build/Release-iphoneos/Demo.build/Objects-normal/armv7/main.o
deleted
100644 → 0
No preview for this file type
PoolSdk_i9133_Demo/build/Demo.build/Release-iphoneos/Demo.build/PoolSdk.framework.xcent
deleted
100644 → 0
1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
2 | -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
3 | -<plist version="1.0"> | ||
4 | -<dict> | ||
5 | - <key>application-identifier</key> | ||
6 | - <string>94U2MA6SJK.com.mango.ios.fytx</string> | ||
7 | - <key>keychain-access-groups</key> | ||
8 | - <array> | ||
9 | - <string>94U2MA6SJK.com.mango.ios.fytx</string> | ||
10 | - </array> | ||
11 | -</dict> | ||
12 | -</plist> |
PoolSdk_i9133_Demo/build/Demo.build/Release-iphoneos/Demo.build/assetcatalog_dependencies
deleted
100644 → 0
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
2 | -<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
3 | -<plist version="1.0"> | ||
4 | - <dict> | ||
5 | - <key>CFBundleDevelopmentRegion</key> | ||
6 | - <string>English</string> | ||
7 | - <key>CFBundleIdentifier</key> | ||
8 | - <string>com.apple.xcode.dsym.com.mango.ios.fytx</string> | ||
9 | - <key>CFBundleInfoDictionaryVersion</key> | ||
10 | - <string>6.0</string> | ||
11 | - <key>CFBundlePackageType</key> | ||
12 | - <string>dSYM</string> | ||
13 | - <key>CFBundleSignature</key> | ||
14 | - <string>????</string> | ||
15 | - <key>CFBundleShortVersionString</key> | ||
16 | - <string>1.0</string> | ||
17 | - <key>CFBundleVersion</key> | ||
18 | - <string>1</string> | ||
19 | - </dict> | ||
20 | -</plist> |
PoolSdk_i9133_Demo/build/Release-iphoneos/Demo.app.dSYM/Contents/Resources/DWARF/Demo
deleted
100644 → 0
No preview for this file type
No preview for this file type
PoolSdk_i9133_Demo/build/Release-iphoneos/Demo.app/Base.lproj/Main.storyboardc/Info.plist
deleted
100644 → 0
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
PoolSdk_i9133_Demo/build/Release-iphoneos/Demo.app/Frameworks/PoolSdk.framework/Info.plist
deleted
100644 → 0
No preview for this file type
PoolSdk_i9133_Demo/build/Release-iphoneos/Demo.app/Frameworks/PoolSdk.framework/PoolSdk
deleted
100755 → 0
No preview for this file type
1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
2 | -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
3 | -<plist version="1.0"> | ||
4 | -<dict> | ||
5 | - <key>files</key> | ||
6 | - <dict> | ||
7 | - <key>Info.plist</key> | ||
8 | - <data> | ||
9 | - wCQPzFEo3LJ8fa7jJozA83dnvk8= | ||
10 | - </data> | ||
11 | - </dict> | ||
12 | - <key>files2</key> | ||
13 | - <dict/> | ||
14 | - <key>rules</key> | ||
15 | - <dict> | ||
16 | - <key>^</key> | ||
17 | - <true/> | ||
18 | - <key>^.*\.lproj/</key> | ||
19 | - <dict> | ||
20 | - <key>optional</key> | ||
21 | - <true/> | ||
22 | - <key>weight</key> | ||
23 | - <real>1000</real> | ||
24 | - </dict> | ||
25 | - <key>^.*\.lproj/locversion.plist$</key> | ||
26 | - <dict> | ||
27 | - <key>omit</key> | ||
28 | - <true/> | ||
29 | - <key>weight</key> | ||
30 | - <real>1100</real> | ||
31 | - </dict> | ||
32 | - <key>^version.plist$</key> | ||
33 | - <true/> | ||
34 | - </dict> | ||
35 | - <key>rules2</key> | ||
36 | - <dict> | ||
37 | - <key>.*\.dSYM($|/)</key> | ||
38 | - <dict> | ||
39 | - <key>weight</key> | ||
40 | - <real>11</real> | ||
41 | - </dict> | ||
42 | - <key>^</key> | ||
43 | - <dict> | ||
44 | - <key>weight</key> | ||
45 | - <real>20</real> | ||
46 | - </dict> | ||
47 | - <key>^(.*/)?\.DS_Store$</key> | ||
48 | - <dict> | ||
49 | - <key>omit</key> | ||
50 | - <true/> | ||
51 | - <key>weight</key> | ||
52 | - <real>2000</real> | ||
53 | - </dict> | ||
54 | - <key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key> | ||
55 | - <dict> | ||
56 | - <key>nested</key> | ||
57 | - <true/> | ||
58 | - <key>weight</key> | ||
59 | - <real>10</real> | ||
60 | - </dict> | ||
61 | - <key>^.*</key> | ||
62 | - <true/> | ||
63 | - <key>^.*\.lproj/</key> | ||
64 | - <dict> | ||
65 | - <key>optional</key> | ||
66 | - <true/> | ||
67 | - <key>weight</key> | ||
68 | - <real>1000</real> | ||
69 | - </dict> | ||
70 | - <key>^.*\.lproj/locversion.plist$</key> | ||
71 | - <dict> | ||
72 | - <key>omit</key> | ||
73 | - <true/> | ||
74 | - <key>weight</key> | ||
75 | - <real>1100</real> | ||
76 | - </dict> | ||
77 | - <key>^Info\.plist$</key> | ||
78 | - <dict> | ||
79 | - <key>omit</key> | ||
80 | - <true/> | ||
81 | - <key>weight</key> | ||
82 | - <real>20</real> | ||
83 | - </dict> | ||
84 | - <key>^PkgInfo$</key> | ||
85 | - <dict> | ||
86 | - <key>omit</key> | ||
87 | - <true/> | ||
88 | - <key>weight</key> | ||
89 | - <real>20</real> | ||
90 | - </dict> | ||
91 | - <key>^[^/]+$</key> | ||
92 | - <dict> | ||
93 | - <key>nested</key> | ||
94 | - <true/> | ||
95 | - <key>weight</key> | ||
96 | - <real>10</real> | ||
97 | - </dict> | ||
98 | - <key>^embedded\.provisionprofile$</key> | ||
99 | - <dict> | ||
100 | - <key>weight</key> | ||
101 | - <real>20</real> | ||
102 | - </dict> | ||
103 | - <key>^version\.plist$</key> | ||
104 | - <dict> | ||
105 | - <key>weight</key> | ||
106 | - <real>20</real> | ||
107 | - </dict> | ||
108 | - </dict> | ||
109 | -</dict> | ||
110 | -</plist> |
No preview for this file type
1 | -APPL???? | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
2 | -<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
3 | -<plist version="1.0"> | ||
4 | -<dict> | ||
5 | - <key>files</key> | ||
6 | - <dict> | ||
7 | - <key>Base.lproj/LaunchScreen.nib</key> | ||
8 | - <dict> | ||
9 | - <key>hash</key> | ||
10 | - <data> | ||
11 | - qS1D5deznsNamN30QWAeeF6Qvck= | ||
12 | - </data> | ||
13 | - <key>optional</key> | ||
14 | - <true/> | ||
15 | - </dict> | ||
16 | - <key>Base.lproj/Main.storyboardc/Info.plist</key> | ||
17 | - <dict> | ||
18 | - <key>hash</key> | ||
19 | - <data> | ||
20 | - Jmu6F/QDeWUyQljt5m/23hAkmcs= | ||
21 | - </data> | ||
22 | - <key>optional</key> | ||
23 | - <true/> | ||
24 | - </dict> | ||
25 | - <key>Base.lproj/Main.storyboardc/UIViewController-vXZ-lx-hvc.nib</key> | ||
26 | - <dict> | ||
27 | - <key>hash</key> | ||
28 | - <data> | ||
29 | - S0Rm37U0qbcN8itEKd8ehAOTTG8= | ||
30 | - </data> | ||
31 | - <key>optional</key> | ||
32 | - <true/> | ||
33 | - </dict> | ||
34 | - <key>Base.lproj/Main.storyboardc/vXZ-lx-hvc-view-kh9-bI-dsS.nib</key> | ||
35 | - <dict> | ||
36 | - <key>hash</key> | ||
37 | - <data> | ||
38 | - iUebPTdrmmI+Efmh2jNyZtYd6Rw= | ||
39 | - </data> | ||
40 | - <key>optional</key> | ||
41 | - <true/> | ||
42 | - </dict> | ||
43 | - <key>Frameworks/PoolSdk.framework/Info.plist</key> | ||
44 | - <data> | ||
45 | - wCQPzFEo3LJ8fa7jJozA83dnvk8= | ||
46 | - </data> | ||
47 | - <key>Frameworks/PoolSdk.framework/PoolSdk</key> | ||
48 | - <data> | ||
49 | - JUJegdrkb/MOG4fuokVM9umScqY= | ||
50 | - </data> | ||
51 | - <key>Frameworks/PoolSdk.framework/_CodeSignature/CodeResources</key> | ||
52 | - <data> | ||
53 | - cEiy8zXQWqmsWIUXMxPUdcnLCTU= | ||
54 | - </data> | ||
55 | - <key>Info.plist</key> | ||
56 | - <data> | ||
57 | - f2urSNHr89NuFvbMaVKHe1RIacs= | ||
58 | - </data> | ||
59 | - <key>PkgInfo</key> | ||
60 | - <data> | ||
61 | - n57qDP4tZfLD1rCS43W0B4LQjzE= | ||
62 | - </data> | ||
63 | - <key>embedded.mobileprovision</key> | ||
64 | - <data> | ||
65 | - VEOAPk38KQ9XjqjmIIdwzPGw+54= | ||
66 | - </data> | ||
67 | - </dict> | ||
68 | - <key>files2</key> | ||
69 | - <dict> | ||
70 | - <key>Base.lproj/LaunchScreen.nib</key> | ||
71 | - <dict> | ||
72 | - <key>hash</key> | ||
73 | - <data> | ||
74 | - qS1D5deznsNamN30QWAeeF6Qvck= | ||
75 | - </data> | ||
76 | - <key>optional</key> | ||
77 | - <true/> | ||
78 | - </dict> | ||
79 | - <key>Base.lproj/Main.storyboardc/Info.plist</key> | ||
80 | - <dict> | ||
81 | - <key>hash</key> | ||
82 | - <data> | ||
83 | - Jmu6F/QDeWUyQljt5m/23hAkmcs= | ||
84 | - </data> | ||
85 | - <key>optional</key> | ||
86 | - <true/> | ||
87 | - </dict> | ||
88 | - <key>Base.lproj/Main.storyboardc/UIViewController-vXZ-lx-hvc.nib</key> | ||
89 | - <dict> | ||
90 | - <key>hash</key> | ||
91 | - <data> | ||
92 | - S0Rm37U0qbcN8itEKd8ehAOTTG8= | ||
93 | - </data> | ||
94 | - <key>optional</key> | ||
95 | - <true/> | ||
96 | - </dict> | ||
97 | - <key>Base.lproj/Main.storyboardc/vXZ-lx-hvc-view-kh9-bI-dsS.nib</key> | ||
98 | - <dict> | ||
99 | - <key>hash</key> | ||
100 | - <data> | ||
101 | - iUebPTdrmmI+Efmh2jNyZtYd6Rw= | ||
102 | - </data> | ||
103 | - <key>optional</key> | ||
104 | - <true/> | ||
105 | - </dict> | ||
106 | - <key>Frameworks/PoolSdk.framework/Info.plist</key> | ||
107 | - <data> | ||
108 | - wCQPzFEo3LJ8fa7jJozA83dnvk8= | ||
109 | - </data> | ||
110 | - <key>Frameworks/PoolSdk.framework/PoolSdk</key> | ||
111 | - <data> | ||
112 | - JUJegdrkb/MOG4fuokVM9umScqY= | ||
113 | - </data> | ||
114 | - <key>Frameworks/PoolSdk.framework/_CodeSignature/CodeResources</key> | ||
115 | - <data> | ||
116 | - cEiy8zXQWqmsWIUXMxPUdcnLCTU= | ||
117 | - </data> | ||
118 | - <key>embedded.mobileprovision</key> | ||
119 | - <data> | ||
120 | - VEOAPk38KQ9XjqjmIIdwzPGw+54= | ||
121 | - </data> | ||
122 | - </dict> | ||
123 | - <key>rules</key> | ||
124 | - <dict> | ||
125 | - <key>^</key> | ||
126 | - <true/> | ||
127 | - <key>^.*\.lproj/</key> | ||
128 | - <dict> | ||
129 | - <key>optional</key> | ||
130 | - <true/> | ||
131 | - <key>weight</key> | ||
132 | - <real>1000</real> | ||
133 | - </dict> | ||
134 | - <key>^.*\.lproj/locversion.plist$</key> | ||
135 | - <dict> | ||
136 | - <key>omit</key> | ||
137 | - <true/> | ||
138 | - <key>weight</key> | ||
139 | - <real>1100</real> | ||
140 | - </dict> | ||
141 | - <key>^version.plist$</key> | ||
142 | - <true/> | ||
143 | - </dict> | ||
144 | - <key>rules2</key> | ||
145 | - <dict> | ||
146 | - <key>.*\.dSYM($|/)</key> | ||
147 | - <dict> | ||
148 | - <key>weight</key> | ||
149 | - <real>11</real> | ||
150 | - </dict> | ||
151 | - <key>^</key> | ||
152 | - <dict> | ||
153 | - <key>weight</key> | ||
154 | - <real>20</real> | ||
155 | - </dict> | ||
156 | - <key>^(.*/)?\.DS_Store$</key> | ||
157 | - <dict> | ||
158 | - <key>omit</key> | ||
159 | - <true/> | ||
160 | - <key>weight</key> | ||
161 | - <real>2000</real> | ||
162 | - </dict> | ||
163 | - <key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key> | ||
164 | - <dict> | ||
165 | - <key>nested</key> | ||
166 | - <true/> | ||
167 | - <key>weight</key> | ||
168 | - <real>10</real> | ||
169 | - </dict> | ||
170 | - <key>^.*</key> | ||
171 | - <true/> | ||
172 | - <key>^.*\.lproj/</key> | ||
173 | - <dict> | ||
174 | - <key>optional</key> | ||
175 | - <true/> | ||
176 | - <key>weight</key> | ||
177 | - <real>1000</real> | ||
178 | - </dict> | ||
179 | - <key>^.*\.lproj/locversion.plist$</key> | ||
180 | - <dict> | ||
181 | - <key>omit</key> | ||
182 | - <true/> | ||
183 | - <key>weight</key> | ||
184 | - <real>1100</real> | ||
185 | - </dict> | ||
186 | - <key>^Info\.plist$</key> | ||
187 | - <dict> | ||
188 | - <key>omit</key> | ||
189 | - <true/> | ||
190 | - <key>weight</key> | ||
191 | - <real>20</real> | ||
192 | - </dict> | ||
193 | - <key>^PkgInfo$</key> | ||
194 | - <dict> | ||
195 | - <key>omit</key> | ||
196 | - <true/> | ||
197 | - <key>weight</key> | ||
198 | - <real>20</real> | ||
199 | - </dict> | ||
200 | - <key>^[^/]+$</key> | ||
201 | - <dict> | ||
202 | - <key>nested</key> | ||
203 | - <true/> | ||
204 | - <key>weight</key> | ||
205 | - <real>10</real> | ||
206 | - </dict> | ||
207 | - <key>^embedded\.provisionprofile$</key> | ||
208 | - <dict> | ||
209 | - <key>weight</key> | ||
210 | - <real>20</real> | ||
211 | - </dict> | ||
212 | - <key>^version\.plist$</key> | ||
213 | - <dict> | ||
214 | - <key>weight</key> | ||
215 | - <real>20</real> | ||
216 | - </dict> | ||
217 | - </dict> | ||
218 | -</dict> | ||
219 | -</plist> |
No preview for this file type
PoolSdk_i9133_Demo/build/myDemo.ipa
deleted
100644 → 0
No preview for this file type
No preview for this file type
... | @@ -8,7 +8,9 @@ | ... | @@ -8,7 +8,9 @@ |
8 | 8 | ||
9 | 9 | ||
10 | #include "UnionInterface.h" | 10 | #include "UnionInterface.h" |
11 | -@interface Interface : NSObject <UnionInterface> | 11 | +#import <SafariServices/SafariServices.h> |
12 | +@interface Interface : NSObject <UnionInterface,SFSafariViewControllerDelegate> | ||
12 | @property(nonatomic, strong)UIViewController *controller; | 13 | @property(nonatomic, strong)UIViewController *controller; |
13 | 14 | ||
15 | + | ||
14 | @end | 16 | @end |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -18,6 +18,7 @@ | ... | @@ -18,6 +18,7 @@ |
18 | - (void)startCheck:(PoolLoginInfo *)loginInfo; | 18 | - (void)startCheck:(PoolLoginInfo *)loginInfo; |
19 | - (void) createOrder:(PoolCreateOrderInfo *)payInfo; | 19 | - (void) createOrder:(PoolCreateOrderInfo *)payInfo; |
20 | - (void) reportOpen; | 20 | - (void) reportOpen; |
21 | +- (void)handleFirstOpenApp:(NSString*) path; | ||
21 | - (void) reportEnter:(PoolReportInfo *)reInfo; | 22 | - (void) reportEnter:(PoolReportInfo *)reInfo; |
22 | - (void) report:(NSString *)_action :(PoolReportInfo *)reInfo; | 23 | - (void) report:(NSString *)_action :(PoolReportInfo *)reInfo; |
23 | - (void)sendNotice:(PoolSDKNotificationType)notiType | 24 | - (void)sendNotice:(PoolSDKNotificationType)notiType | ... | ... |
... | @@ -26,6 +26,6 @@ | ... | @@ -26,6 +26,6 @@ |
26 | 26 | ||
27 | - (NSString *)getValueByKey:(NSString *) key; | 27 | - (NSString *)getValueByKey:(NSString *) key; |
28 | 28 | ||
29 | - | 29 | +- (void) updateC1C2Value:(NSString *)c1 c2:(NSString *)c2; |
30 | 30 | ||
31 | @end | 31 | @end |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
... | @@ -21,10 +21,10 @@ | ... | @@ -21,10 +21,10 @@ |
21 | @property(nonatomic, strong)NSString *openId; | 21 | @property(nonatomic, strong)NSString *openId; |
22 | 22 | ||
23 | 23 | ||
24 | -#define REPORT_URL @"http://public.sdk.gzyouai.com:9030/sdk/statistic" | 24 | +#define REPORT_URL @"http://public.sdk.gzyouai.com:9030/sdk/statistic"//@"http://10.200.201.230:9001/sdk/statistic" |
25 | -#define REPORT_OPEN @"OPEN" | 25 | +#define REPORT_OPEN @"open" |
26 | -#define REPORT_ENTER @"ENTER" | 26 | +#define REPORT_ENTER @"enter" |
27 | -#define REPORT_CREATEROLE @"CREATEROLE" | 27 | +#define REPORT_CREATEROLE @"createrole" |
28 | -#define REPORT_ROLEUPGRADE @"ROLEUPGRADE" | 28 | +#define REPORT_ROLEUPGRADE @"roleupgrade" |
29 | 29 | ||
30 | @end | 30 | @end | ... | ... |
... | @@ -38,8 +38,10 @@ | ... | @@ -38,8 +38,10 @@ |
38 | */ | 38 | */ |
39 | - (void)SDKgotoUserCenter; | 39 | - (void)SDKgotoUserCenter; |
40 | 40 | ||
41 | +- (void)viewDidAppear; | ||
42 | + | ||
41 | /** | 43 | /** |
42 | - 用户中心 | 44 | + 提交数据 |
43 | */ | 45 | */ |
44 | - (void)SDKreport:(PoolReportInfo *) reportInfo; | 46 | - (void)SDKreport:(PoolReportInfo *) reportInfo; |
45 | 47 | ... | ... |
No preview for this file type
No preview for this file type
-
Please register or login to post a comment