Przeglądaj źródła

去除调试日志,更新资源包

liufl5 6 lat temu
rodzic
commit
4dfe01c47c
32 zmienionych plików z 920 dodań i 120 usunięć
  1. 4 4
      IpuCommon/Frameworks/IpuCount.framework/Headers/IpuCountConstant.h
  2. BIN
      IpuCommon/Frameworks/IpuCount.framework/IpuCount
  3. BIN
      IpuCommon/Frameworks/IpuLib.framework/IpuLib
  4. BIN
      IpuCommon/Frameworks/IpuMap.framework/IpuMap
  5. BIN
      IpuCommon/Frameworks/IpuPush.framework/IpuPush
  6. BIN
      IpuCommon/Frameworks/IpuQrCode.framework/IpuQrCode
  7. 36 0
      IpuCommon/Frameworks/WadeMobile.framework/Headers/WDTemplateOpenUrlController.h
  8. 2 0
      IpuCommon/Frameworks/WadeMobile.framework/Headers/WadeMobile.h
  9. BIN
      IpuCommon/Frameworks/WadeMobile.framework/Info.plist
  10. BIN
      IpuCommon/Frameworks/WadeMobile.framework/WadeMobile
  11. BIN
      IpuCommon/Frameworks/WadeMobileFunc.framework/Info.plist
  12. BIN
      IpuCommon/Frameworks/WadeMobileFunc.framework/WadeMobileFunc
  13. 21 2
      IpuCommon/Frameworks/WadeMobileFunc.framework/_CodeSignature/CodeResources
  14. BIN
      IpuCommon/Frameworks/WadeMobileUI.framework/WadeMobileUI
  15. 3 3
      IpuLib/IpuLib.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  16. 3 0
      SuperMenu/Res/config/mobile-config.xml
  17. BIN
      SuperMenu/Res/icon/back@2x.png
  18. BIN
      SuperMenu/Res/icon/close@2x.png
  19. BIN
      SuperMenu/Res/icon/full@2x.png
  20. BIN
      SuperMenu/Res/icon/left@2x.png
  21. BIN
      SuperMenu/Res/icon/more@2x.png
  22. BIN
      SuperMenu/Res/icon/right@2x.png
  23. 397 0
      SuperMenu/SuperMenu.xcodeproj/project.pbxproj
  24. BIN
      SuperMenu/SuperMenu.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate
  25. 50 97
      SuperMenu/SuperMenu.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
  26. 1 1
      SuperMenu/SuperMenu.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  27. 5 2
      SuperMenu/SuperMenu/multiple/AppManagePlugin.m
  28. 3 3
      WadeMobileFunc/WadeMobileFunc.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist
  29. 3 3
      WadeMobileFunc/WadeMobileFunc.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist
  30. 3 5
      WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m
  31. 389 0
      display-center/display-center.xcodeproj/project.pbxproj
  32. BIN
      display-center/display-center.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate

+ 4 - 4
IpuCommon/Frameworks/IpuCount.framework/Headers/IpuCountConstant.h

@ -15,12 +15,12 @@
15 15
//#define SERVER_ADDRESS @"172.18.90.220"
16 16
//#define SERVER_PORT 9999
17 17
18
//#define SERVER_ADDRESS @"121.42.183.206"
19
//#define SERVER_PORT 9000
18
#define SERVER_ADDRESS @"121.42.183.206"
19
#define SERVER_PORT 9000
20 20
21
#define SERVER_ADDRESS @"192.168.31.239"
21
//#define SERVER_ADDRESS @"192.168.31.239"
22 22
//#define SERVER_ADDRESS @"192.168.1.103"
23
#define SERVER_PORT 9100
23
//#define SERVER_PORT 9100
24 24
25 25
#define COUNT_SERVICE_URL @"count_service_url"
26 26

BIN
IpuCommon/Frameworks/IpuCount.framework/IpuCount


BIN
IpuCommon/Frameworks/IpuLib.framework/IpuLib


BIN
IpuCommon/Frameworks/IpuMap.framework/IpuMap


BIN
IpuCommon/Frameworks/IpuPush.framework/IpuPush


BIN
IpuCommon/Frameworks/IpuQrCode.framework/IpuQrCode


+ 36 - 0
IpuCommon/Frameworks/WadeMobile.framework/Headers/WDTemplateOpenUrlController.h

@ -0,0 +1,36 @@
1
//
2
//  WDTemplateOpenUrlController.h
3
//  WadeMobile
4
//
5
//  Created by Mac on 2019/6/13.
6
//  Copyright © 2019年 asiainfo. All rights reserved.
7
//
8
9
#import <WadeMobile/WadeMobile.h>
10
#import "WDCustomContent.h"
11
@class WDPopover;
12
13
@interface WDTemplateOpenUrlController : WDTemplateController<WDCustomContentDelegate>
14
{
15
    WDPopover *wdPopover;
16
    WDCustomContent *wdContent;
17
}
18
@property(nonatomic,strong)WDPlugin* plugin;
19
20
@property(nonatomic,strong)NSString *openUrlStr;
21
@property(nonatomic,strong)NSString *callback;
22
@property(nonatomic,strong)NSString *navTitle;
23
@property(nonatomic,strong)NSArray *operates;
24
@property(nonatomic,strong)NSArray *colors;
25
@property(nonatomic,assign)BOOL hiddenNavigationBar;
26
27
/*
28
 默认显示导航栏
29
 */
30
-(id)initWithUrl:(NSString *)url Callback:(NSString *)callback Title:(NSString *)title Operates:(NSArray *)operates Colors:(NSArray *)colors;
31
/*
32
 通过参数控制是否显示导航栏:隐藏导航栏的情况会显示悬浮按钮
33
 */
34
-(id)initWithUrl:(NSString *)url Callback:(NSString *)callback Title:(NSString *)title Operates:(NSArray *)operates Colors:(NSArray *)colors Hidden:(BOOL)hidden;
35
36
@end

+ 2 - 0
IpuCommon/Frameworks/WadeMobile.framework/Headers/WadeMobile.h

@ -90,6 +90,8 @@
90 90
91 91
#import <WadeMobile/IPUWebView.h>
92 92
93
#import <WadeMobile/WDTemplateOpenUrlController.h>
94
93 95
#endif /* WadeMobile_h */
94 96
95 97

BIN
IpuCommon/Frameworks/WadeMobile.framework/Info.plist


BIN
IpuCommon/Frameworks/WadeMobile.framework/WadeMobile


BIN
IpuCommon/Frameworks/WadeMobileFunc.framework/Info.plist


BIN
IpuCommon/Frameworks/WadeMobileFunc.framework/WadeMobileFunc


+ 21 - 2
IpuCommon/Frameworks/WadeMobileFunc.framework/_CodeSignature/CodeResources

@ -122,7 +122,7 @@
122 122
		</data>
123 123
		<key>Info.plist</key>
124 124
		<data>
125
		xtCMMN5FjE14PS+d70+NovcI9Jw=
125
		j316aZXORULqel5XnmWdm0rhUHg=
126 126
		</data>
127 127
	</dict>
128 128
	<key>files2</key>
@ -449,7 +449,7 @@
449 449
	</dict>
450 450
	<key>rules</key>
451 451
	<dict>
452
		<key>^.*</key>
452
		<key>^</key>
453 453
		<true/>
454 454
		<key>^.*\.lproj/</key>
455 455
		<dict>
@ -480,6 +480,11 @@
480 480
			<key>weight</key>
481 481
			<real>11</real>
482 482
		</dict>
483
		<key>^</key>
484
		<dict>
485
			<key>weight</key>
486
			<real>20</real>
487
		</dict>
483 488
		<key>^(.*/)?\.DS_Store$</key>
484 489
		<dict>
485 490
			<key>omit</key>
@ -487,6 +492,13 @@
487 492
			<key>weight</key>
488 493
			<real>2000</real>
489 494
		</dict>
495
		<key>^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/</key>
496
		<dict>
497
			<key>nested</key>
498
			<true/>
499
			<key>weight</key>
500
			<real>10</real>
501
		</dict>
490 502
		<key>^.*</key>
491 503
		<true/>
492 504
		<key>^.*\.lproj/</key>
@ -522,6 +534,13 @@
522 534
			<key>weight</key>
523 535
			<real>20</real>
524 536
		</dict>
537
		<key>^[^/]+$</key>
538
		<dict>
539
			<key>nested</key>
540
			<true/>
541
			<key>weight</key>
542
			<real>10</real>
543
		</dict>
525 544
		<key>^embedded\.provisionprofile$</key>
526 545
		<dict>
527 546
			<key>weight</key>

BIN
IpuCommon/Frameworks/WadeMobileUI.framework/WadeMobileUI


+ 3 - 3
IpuLib/IpuLib.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,17 +7,17 @@
7 7
		<key>IpuLib.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>6</integer>
10
			<integer>8</integer>
11 11
		</dict>
12 12
		<key>IpuLib4Appstore.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>7</integer>
15
			<integer>9</integer>
16 16
		</dict>
17 17
		<key>IpuLib4Develop.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>8</integer>
20
			<integer>10</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 3 - 0
SuperMenu/Res/config/mobile-config.xml

@ -29,6 +29,9 @@
29 29
<!--    <config name="request_host" value="http://192.168.31.239:8080"/>-->
30 30
<!--    <config name="request_host" value="http://192.168.3.115:8080"/>-->
31 31
<!--    <config name="request_host" value="http://192.168.1.103:8080"/>-->
32
<!--    <config name="request_host" value="http://192.168.3.143:8080"/>-->
33
<!--    <config name="request_path" value="/superapp"/>-->
34
32 35
33 36
    <!--leijie-->
34 37
<!--    <config name="request_host" value="http://10.13.10.32:8083"/>-->

BIN
SuperMenu/Res/icon/back@2x.png


BIN
SuperMenu/Res/icon/close@2x.png


BIN
SuperMenu/Res/icon/full@2x.png


BIN
SuperMenu/Res/icon/left@2x.png


BIN
SuperMenu/Res/icon/more@2x.png


BIN
SuperMenu/Res/icon/right@2x.png


+ 397 - 0
SuperMenu/SuperMenu.xcodeproj/project.pbxproj

@ -54,6 +54,142 @@
54 54
		EA45A5C11E1391EC001275C9 /* AppManagePlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = EA45A5C01E1391EC001275C9 /* AppManagePlugin.m */; };
55 55
/* End PBXBuildFile section */
56 56
57
/* Begin PBXContainerItemProxy section */
58
		042609A222B22C6E002C1B81 /* PBXContainerItemProxy */ = {
59
			isa = PBXContainerItemProxy;
60
			containerPortal = 0426099922B22C6E002C1B81 /* WadeMobile.xcodeproj */;
61
			proxyType = 2;
62
			remoteGlobalIDString = 614A1CD61B2142130099793B;
63
			remoteInfo = WadeMobile;
64
		};
65
		042609A422B22C6E002C1B81 /* PBXContainerItemProxy */ = {
66
			isa = PBXContainerItemProxy;
67
			containerPortal = 0426099922B22C6E002C1B81 /* WadeMobile.xcodeproj */;
68
			proxyType = 2;
69
			remoteGlobalIDString = 614A1CE11B2142130099793B;
70
			remoteInfo = WadeMobileTests;
71
		};
72
		042609A622B22C6E002C1B81 /* PBXContainerItemProxy */ = {
73
			isa = PBXContainerItemProxy;
74
			containerPortal = 0426099922B22C6E002C1B81 /* WadeMobile.xcodeproj */;
75
			proxyType = 2;
76
			remoteGlobalIDString = E2D93A741B89BA2800D1DE7C;
77
			remoteInfo = WadeMobileBundle;
78
		};
79
		042609A822B22C6E002C1B81 /* PBXContainerItemProxy */ = {
80
			isa = PBXContainerItemProxy;
81
			containerPortal = 0426099922B22C6E002C1B81 /* WadeMobile.xcodeproj */;
82
			proxyType = 2;
83
			remoteGlobalIDString = 0A791C221FD102C0003CD586;
84
			remoteInfo = WadeMobileTestUnit;
85
		};
86
		042609B122B22C7A002C1B81 /* PBXContainerItemProxy */ = {
87
			isa = PBXContainerItemProxy;
88
			containerPortal = 042609AA22B22C7A002C1B81 /* WadeMobileFunc.xcodeproj */;
89
			proxyType = 2;
90
			remoteGlobalIDString = E2DE1AD41B42DD9500762141;
91
			remoteInfo = WadeMobileFunc;
92
		};
93
		042609B322B22C7A002C1B81 /* PBXContainerItemProxy */ = {
94
			isa = PBXContainerItemProxy;
95
			containerPortal = 042609AA22B22C7A002C1B81 /* WadeMobileFunc.xcodeproj */;
96
			proxyType = 2;
97
			remoteGlobalIDString = 0AE1E0841C7EE95900FCCD24;
98
			remoteInfo = WadeMobileFuncTests;
99
		};
100
		042609BC22B22D36002C1B81 /* PBXContainerItemProxy */ = {
101
			isa = PBXContainerItemProxy;
102
			containerPortal = 042609B522B22D36002C1B81 /* WadeMobileUI.xcodeproj */;
103
			proxyType = 2;
104
			remoteGlobalIDString = E2E37D731B21F3090047D5D3;
105
			remoteInfo = WadeMobileUI;
106
		};
107
		042609BE22B22D36002C1B81 /* PBXContainerItemProxy */ = {
108
			isa = PBXContainerItemProxy;
109
			containerPortal = 042609B522B22D36002C1B81 /* WadeMobileUI.xcodeproj */;
110
			proxyType = 2;
111
			remoteGlobalIDString = E2E37D7E1B21F3090047D5D3;
112
			remoteInfo = WadeMobileUITests;
113
		};
114
		042609C722B22D49002C1B81 /* PBXContainerItemProxy */ = {
115
			isa = PBXContainerItemProxy;
116
			containerPortal = 042609C022B22D48002C1B81 /* IpuLib.xcodeproj */;
117
			proxyType = 2;
118
			remoteGlobalIDString = E2BECD581BF8EC290077807A;
119
			remoteInfo = IpuLib;
120
		};
121
		042609C922B22D49002C1B81 /* PBXContainerItemProxy */ = {
122
			isa = PBXContainerItemProxy;
123
			containerPortal = 042609C022B22D48002C1B81 /* IpuLib.xcodeproj */;
124
			proxyType = 2;
125
			remoteGlobalIDString = E2BECD631BF8EC290077807A;
126
			remoteInfo = IpuLibTests;
127
		};
128
		042609D222B22D61002C1B81 /* PBXContainerItemProxy */ = {
129
			isa = PBXContainerItemProxy;
130
			containerPortal = 042609CB22B22D60002C1B81 /* IpuQrCode.xcodeproj */;
131
			proxyType = 2;
132
			remoteGlobalIDString = E2164EC31B4D71A0001DDCA5;
133
			remoteInfo = IpuQrCode;
134
		};
135
		042609D422B22D61002C1B81 /* PBXContainerItemProxy */ = {
136
			isa = PBXContainerItemProxy;
137
			containerPortal = 042609CB22B22D60002C1B81 /* IpuQrCode.xcodeproj */;
138
			proxyType = 2;
139
			remoteGlobalIDString = E2164ECE1B4D71A0001DDCA5;
140
			remoteInfo = IpuQrCodeTests;
141
		};
142
		042609D622B22D61002C1B81 /* PBXContainerItemProxy */ = {
143
			isa = PBXContainerItemProxy;
144
			containerPortal = 042609CB22B22D60002C1B81 /* IpuQrCode.xcodeproj */;
145
			proxyType = 2;
146
			remoteGlobalIDString = 0A35A5921D34DA900087BBCA;
147
			remoteInfo = IpuQrCodeBundle;
148
		};
149
		042609DE22B22D71002C1B81 /* PBXContainerItemProxy */ = {
150
			isa = PBXContainerItemProxy;
151
			containerPortal = 042609D822B22D71002C1B81 /* IpuPush.xcodeproj */;
152
			proxyType = 2;
153
			remoteGlobalIDString = 0A159C231D2B4BD70025166A;
154
			remoteInfo = IpuPush;
155
		};
156
		042609E022B22D71002C1B81 /* PBXContainerItemProxy */ = {
157
			isa = PBXContainerItemProxy;
158
			containerPortal = 042609D822B22D71002C1B81 /* IpuPush.xcodeproj */;
159
			proxyType = 2;
160
			remoteGlobalIDString = 0A159C2D1D2B4BD70025166A;
161
			remoteInfo = IpuPushTests;
162
		};
163
		042609E722B22D82002C1B81 /* PBXContainerItemProxy */ = {
164
			isa = PBXContainerItemProxy;
165
			containerPortal = 042609E222B22D81002C1B81 /* IpuMap.xcodeproj */;
166
			proxyType = 2;
167
			remoteGlobalIDString = B2461A1D20E0807800BE2236;
168
			remoteInfo = IpuMap;
169
		};
170
		042609E922B22D82002C1B81 /* PBXContainerItemProxy */ = {
171
			isa = PBXContainerItemProxy;
172
			containerPortal = 042609E222B22D81002C1B81 /* IpuMap.xcodeproj */;
173
			proxyType = 2;
174
			remoteGlobalIDString = B2FC01FA20E1CCE9009ECF6B;
175
			remoteInfo = IpuMapBundle;
176
		};
177
		042609F022B22D94002C1B81 /* PBXContainerItemProxy */ = {
178
			isa = PBXContainerItemProxy;
179
			containerPortal = 042609EB22B22D94002C1B81 /* IpuCount.xcodeproj */;
180
			proxyType = 2;
181
			remoteGlobalIDString = EAA4B4D61C897885000342A1;
182
			remoteInfo = IpuCount;
183
		};
184
		042609F222B22D94002C1B81 /* PBXContainerItemProxy */ = {
185
			isa = PBXContainerItemProxy;
186
			containerPortal = 042609EB22B22D94002C1B81 /* IpuCount.xcodeproj */;
187
			proxyType = 2;
188
			remoteGlobalIDString = EAA4B4E01C897885000342A1;
189
			remoteInfo = IpuCountTests;
190
		};
191
/* End PBXContainerItemProxy section */
192
57 193
/* Begin PBXCopyFilesBuildPhase section */
58 194
		EA45A5B21E0777C0001275C9 /* Embed Frameworks */ = {
59 195
			isa = PBXCopyFilesBuildPhase;
@ -77,6 +213,14 @@
77 213
/* End PBXCopyFilesBuildPhase section */
78 214
79 215
/* Begin PBXFileReference section */
216
		0426099922B22C6E002C1B81 /* WadeMobile.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobile.xcodeproj; path = ../../ios/WadeMobile/WadeMobile.xcodeproj; sourceTree = "<group>"; };
217
		042609AA22B22C7A002C1B81 /* WadeMobileFunc.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobileFunc.xcodeproj; path = ../WadeMobileFunc/WadeMobileFunc.xcodeproj; sourceTree = "<group>"; };
218
		042609B522B22D36002C1B81 /* WadeMobileUI.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobileUI.xcodeproj; path = ../../ios/WadeMobileUI/WadeMobileUI.xcodeproj; sourceTree = "<group>"; };
219
		042609C022B22D48002C1B81 /* IpuLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuLib.xcodeproj; path = ../IpuLib/IpuLib.xcodeproj; sourceTree = "<group>"; };
220
		042609CB22B22D60002C1B81 /* IpuQrCode.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuQrCode.xcodeproj; path = "../../ios-plugin/IpuQrCode/IpuQrCode.xcodeproj"; sourceTree = "<group>"; };
221
		042609D822B22D71002C1B81 /* IpuPush.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuPush.xcodeproj; path = "../../ios-plugin/IpuPush/IpuPush.xcodeproj"; sourceTree = "<group>"; };
222
		042609E222B22D81002C1B81 /* IpuMap.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuMap.xcodeproj; path = "../../ios-plugin/IpuMap/IpuMap.xcodeproj"; sourceTree = "<group>"; };
223
		042609EB22B22D94002C1B81 /* IpuCount.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuCount.xcodeproj; path = "../../ios-plugin/IpuCount/IpuCount.xcodeproj"; sourceTree = "<group>"; };
80 224
		0429A26E21805C34003CEE83 /* WadeMobileBundle.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = WadeMobileBundle.bundle; path = ../IpuCommon/Frameworks/WadeMobileBundle.bundle; sourceTree = "<group>"; };
81 225
		0429A29921805EA8003CEE83 /* Res */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Res; sourceTree = "<group>"; };
82 226
		045BF82B218AEDD800235C80 /* WadeMobileFunc.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WadeMobileFunc.framework; path = ../IpuCommon/Frameworks/WadeMobileFunc.framework; sourceTree = "<group>"; };
@ -151,6 +295,81 @@
151 295
/* End PBXFrameworksBuildPhase section */
152 296
153 297
/* Begin PBXGroup section */
298
		0426099A22B22C6E002C1B81 /* Products */ = {
299
			isa = PBXGroup;
300
			children = (
301
				042609A322B22C6E002C1B81 /* WadeMobile.framework */,
302
				042609A522B22C6E002C1B81 /* WadeMobileTests.xctest */,
303
				042609A722B22C6E002C1B81 /* WadeMobileBundle.bundle */,
304
				042609A922B22C6E002C1B81 /* WadeMobileTestUnit.xctest */,
305
			);
306
			name = Products;
307
			sourceTree = "<group>";
308
		};
309
		042609AB22B22C7A002C1B81 /* Products */ = {
310
			isa = PBXGroup;
311
			children = (
312
				042609B222B22C7A002C1B81 /* WadeMobileFunc.framework */,
313
				042609B422B22C7A002C1B81 /* WadeMobileFuncTests.xctest */,
314
			);
315
			name = Products;
316
			sourceTree = "<group>";
317
		};
318
		042609B622B22D36002C1B81 /* Products */ = {
319
			isa = PBXGroup;
320
			children = (
321
				042609BD22B22D36002C1B81 /* WadeMobileUI.framework */,
322
				042609BF22B22D36002C1B81 /* WadeMobileUITests.xctest */,
323
			);
324
			name = Products;
325
			sourceTree = "<group>";
326
		};
327
		042609C122B22D48002C1B81 /* Products */ = {
328
			isa = PBXGroup;
329
			children = (
330
				042609C822B22D49002C1B81 /* IpuLib.framework */,
331
				042609CA22B22D49002C1B81 /* IpuLibTests.xctest */,
332
			);
333
			name = Products;
334
			sourceTree = "<group>";
335
		};
336
		042609CC22B22D60002C1B81 /* Products */ = {
337
			isa = PBXGroup;
338
			children = (
339
				042609D322B22D61002C1B81 /* IpuQrCode.framework */,
340
				042609D522B22D61002C1B81 /* IpuQrCodeTests.xctest */,
341
				042609D722B22D61002C1B81 /* IpuQrCodeBundle.bundle */,
342
			);
343
			name = Products;
344
			sourceTree = "<group>";
345
		};
346
		042609D922B22D71002C1B81 /* Products */ = {
347
			isa = PBXGroup;
348
			children = (
349
				042609DF22B22D71002C1B81 /* IpuPush.framework */,
350
				042609E122B22D71002C1B81 /* IpuPushTests.xctest */,
351
			);
352
			name = Products;
353
			sourceTree = "<group>";
354
		};
355
		042609E322B22D81002C1B81 /* Products */ = {
356
			isa = PBXGroup;
357
			children = (
358
				042609E822B22D82002C1B81 /* IpuMap.framework */,
359
				042609EA22B22D82002C1B81 /* IpuMapBundle.bundle */,
360
			);
361
			name = Products;
362
			sourceTree = "<group>";
363
		};
364
		042609EC22B22D94002C1B81 /* Products */ = {
365
			isa = PBXGroup;
366
			children = (
367
				042609F122B22D94002C1B81 /* IpuCount.framework */,
368
				042609F322B22D94002C1B81 /* IpuCountTests.xctest */,
369
			);
370
			name = Products;
371
			sourceTree = "<group>";
372
		};
154 373
		0A780E601EE8EAB0004AE072 /* Framework */ = {
155 374
			isa = PBXGroup;
156 375
			children = (
@ -206,6 +425,14 @@
206 425
		EA45A5831E077735001275C9 = {
207 426
			isa = PBXGroup;
208 427
			children = (
428
				042609EB22B22D94002C1B81 /* IpuCount.xcodeproj */,
429
				042609E222B22D81002C1B81 /* IpuMap.xcodeproj */,
430
				042609D822B22D71002C1B81 /* IpuPush.xcodeproj */,
431
				042609CB22B22D60002C1B81 /* IpuQrCode.xcodeproj */,
432
				042609C022B22D48002C1B81 /* IpuLib.xcodeproj */,
433
				042609B522B22D36002C1B81 /* WadeMobileUI.xcodeproj */,
434
				042609AA22B22C7A002C1B81 /* WadeMobileFunc.xcodeproj */,
435
				0426099922B22C6E002C1B81 /* WadeMobile.xcodeproj */,
209 436
				0429A29921805EA8003CEE83 /* Res */,
210 437
				0A780E601EE8EAB0004AE072 /* Framework */,
211 438
				EA45A58E1E077735001275C9 /* SuperMenu */,
@ -321,6 +548,40 @@
321 548
			mainGroup = EA45A5831E077735001275C9;
322 549
			productRefGroup = EA45A58D1E077735001275C9 /* Products */;
323 550
			projectDirPath = "";
551
			projectReferences = (
552
				{
553
					ProductGroup = 042609EC22B22D94002C1B81 /* Products */;
554
					ProjectRef = 042609EB22B22D94002C1B81 /* IpuCount.xcodeproj */;
555
				},
556
				{
557
					ProductGroup = 042609C122B22D48002C1B81 /* Products */;
558
					ProjectRef = 042609C022B22D48002C1B81 /* IpuLib.xcodeproj */;
559
				},
560
				{
561
					ProductGroup = 042609E322B22D81002C1B81 /* Products */;
562
					ProjectRef = 042609E222B22D81002C1B81 /* IpuMap.xcodeproj */;
563
				},
564
				{
565
					ProductGroup = 042609D922B22D71002C1B81 /* Products */;
566
					ProjectRef = 042609D822B22D71002C1B81 /* IpuPush.xcodeproj */;
567
				},
568
				{
569
					ProductGroup = 042609CC22B22D60002C1B81 /* Products */;
570
					ProjectRef = 042609CB22B22D60002C1B81 /* IpuQrCode.xcodeproj */;
571
				},
572
				{
573
					ProductGroup = 0426099A22B22C6E002C1B81 /* Products */;
574
					ProjectRef = 0426099922B22C6E002C1B81 /* WadeMobile.xcodeproj */;
575
				},
576
				{
577
					ProductGroup = 042609AB22B22C7A002C1B81 /* Products */;
578
					ProjectRef = 042609AA22B22C7A002C1B81 /* WadeMobileFunc.xcodeproj */;
579
				},
580
				{
581
					ProductGroup = 042609B622B22D36002C1B81 /* Products */;
582
					ProjectRef = 042609B522B22D36002C1B81 /* WadeMobileUI.xcodeproj */;
583
				},
584
			);
324 585
			projectRoot = "";
325 586
			targets = (
326 587
				EA45A58B1E077735001275C9 /* SuperMenu */,
@ -328,6 +589,142 @@
328 589
		};
329 590
/* End PBXProject section */
330 591
592
/* Begin PBXReferenceProxy section */
593
		042609A322B22C6E002C1B81 /* WadeMobile.framework */ = {
594
			isa = PBXReferenceProxy;
595
			fileType = wrapper.framework;
596
			path = WadeMobile.framework;
597
			remoteRef = 042609A222B22C6E002C1B81 /* PBXContainerItemProxy */;
598
			sourceTree = BUILT_PRODUCTS_DIR;
599
		};
600
		042609A522B22C6E002C1B81 /* WadeMobileTests.xctest */ = {
601
			isa = PBXReferenceProxy;
602
			fileType = wrapper.cfbundle;
603
			path = WadeMobileTests.xctest;
604
			remoteRef = 042609A422B22C6E002C1B81 /* PBXContainerItemProxy */;
605
			sourceTree = BUILT_PRODUCTS_DIR;
606
		};
607
		042609A722B22C6E002C1B81 /* WadeMobileBundle.bundle */ = {
608
			isa = PBXReferenceProxy;
609
			fileType = wrapper.cfbundle;
610
			path = WadeMobileBundle.bundle;
611
			remoteRef = 042609A622B22C6E002C1B81 /* PBXContainerItemProxy */;
612
			sourceTree = BUILT_PRODUCTS_DIR;
613
		};
614
		042609A922B22C6E002C1B81 /* WadeMobileTestUnit.xctest */ = {
615
			isa = PBXReferenceProxy;
616
			fileType = wrapper.cfbundle;
617
			path = WadeMobileTestUnit.xctest;
618
			remoteRef = 042609A822B22C6E002C1B81 /* PBXContainerItemProxy */;
619
			sourceTree = BUILT_PRODUCTS_DIR;
620
		};
621
		042609B222B22C7A002C1B81 /* WadeMobileFunc.framework */ = {
622
			isa = PBXReferenceProxy;
623
			fileType = wrapper.framework;
624
			path = WadeMobileFunc.framework;
625
			remoteRef = 042609B122B22C7A002C1B81 /* PBXContainerItemProxy */;
626
			sourceTree = BUILT_PRODUCTS_DIR;
627
		};
628
		042609B422B22C7A002C1B81 /* WadeMobileFuncTests.xctest */ = {
629
			isa = PBXReferenceProxy;
630
			fileType = wrapper.cfbundle;
631
			path = WadeMobileFuncTests.xctest;
632
			remoteRef = 042609B322B22C7A002C1B81 /* PBXContainerItemProxy */;
633
			sourceTree = BUILT_PRODUCTS_DIR;
634
		};
635
		042609BD22B22D36002C1B81 /* WadeMobileUI.framework */ = {
636
			isa = PBXReferenceProxy;
637
			fileType = wrapper.framework;
638
			path = WadeMobileUI.framework;
639
			remoteRef = 042609BC22B22D36002C1B81 /* PBXContainerItemProxy */;
640
			sourceTree = BUILT_PRODUCTS_DIR;
641
		};
642
		042609BF22B22D36002C1B81 /* WadeMobileUITests.xctest */ = {
643
			isa = PBXReferenceProxy;
644
			fileType = wrapper.cfbundle;
645
			path = WadeMobileUITests.xctest;
646
			remoteRef = 042609BE22B22D36002C1B81 /* PBXContainerItemProxy */;
647
			sourceTree = BUILT_PRODUCTS_DIR;
648
		};
649
		042609C822B22D49002C1B81 /* IpuLib.framework */ = {
650
			isa = PBXReferenceProxy;
651
			fileType = wrapper.framework;
652
			path = IpuLib.framework;
653
			remoteRef = 042609C722B22D49002C1B81 /* PBXContainerItemProxy */;
654
			sourceTree = BUILT_PRODUCTS_DIR;
655
		};
656
		042609CA22B22D49002C1B81 /* IpuLibTests.xctest */ = {
657
			isa = PBXReferenceProxy;
658
			fileType = wrapper.cfbundle;
659
			path = IpuLibTests.xctest;
660
			remoteRef = 042609C922B22D49002C1B81 /* PBXContainerItemProxy */;
661
			sourceTree = BUILT_PRODUCTS_DIR;
662
		};
663
		042609D322B22D61002C1B81 /* IpuQrCode.framework */ = {
664
			isa = PBXReferenceProxy;
665
			fileType = wrapper.framework;
666
			path = IpuQrCode.framework;
667
			remoteRef = 042609D222B22D61002C1B81 /* PBXContainerItemProxy */;
668
			sourceTree = BUILT_PRODUCTS_DIR;
669
		};
670
		042609D522B22D61002C1B81 /* IpuQrCodeTests.xctest */ = {
671
			isa = PBXReferenceProxy;
672
			fileType = wrapper.cfbundle;
673
			path = IpuQrCodeTests.xctest;
674
			remoteRef = 042609D422B22D61002C1B81 /* PBXContainerItemProxy */;
675
			sourceTree = BUILT_PRODUCTS_DIR;
676
		};
677
		042609D722B22D61002C1B81 /* IpuQrCodeBundle.bundle */ = {
678
			isa = PBXReferenceProxy;
679
			fileType = wrapper.cfbundle;
680
			path = IpuQrCodeBundle.bundle;
681
			remoteRef = 042609D622B22D61002C1B81 /* PBXContainerItemProxy */;
682
			sourceTree = BUILT_PRODUCTS_DIR;
683
		};
684
		042609DF22B22D71002C1B81 /* IpuPush.framework */ = {
685
			isa = PBXReferenceProxy;
686
			fileType = wrapper.framework;
687
			path = IpuPush.framework;
688
			remoteRef = 042609DE22B22D71002C1B81 /* PBXContainerItemProxy */;
689
			sourceTree = BUILT_PRODUCTS_DIR;
690
		};
691
		042609E122B22D71002C1B81 /* IpuPushTests.xctest */ = {
692
			isa = PBXReferenceProxy;
693
			fileType = wrapper.cfbundle;
694
			path = IpuPushTests.xctest;
695
			remoteRef = 042609E022B22D71002C1B81 /* PBXContainerItemProxy */;
696
			sourceTree = BUILT_PRODUCTS_DIR;
697
		};
698
		042609E822B22D82002C1B81 /* IpuMap.framework */ = {
699
			isa = PBXReferenceProxy;
700
			fileType = wrapper.framework;
701
			path = IpuMap.framework;
702
			remoteRef = 042609E722B22D82002C1B81 /* PBXContainerItemProxy */;
703
			sourceTree = BUILT_PRODUCTS_DIR;
704
		};
705
		042609EA22B22D82002C1B81 /* IpuMapBundle.bundle */ = {
706
			isa = PBXReferenceProxy;
707
			fileType = wrapper.cfbundle;
708
			path = IpuMapBundle.bundle;
709
			remoteRef = 042609E922B22D82002C1B81 /* PBXContainerItemProxy */;
710
			sourceTree = BUILT_PRODUCTS_DIR;
711
		};
712
		042609F122B22D94002C1B81 /* IpuCount.framework */ = {
713
			isa = PBXReferenceProxy;
714
			fileType = wrapper.framework;
715
			path = IpuCount.framework;
716
			remoteRef = 042609F022B22D94002C1B81 /* PBXContainerItemProxy */;
717
			sourceTree = BUILT_PRODUCTS_DIR;
718
		};
719
		042609F322B22D94002C1B81 /* IpuCountTests.xctest */ = {
720
			isa = PBXReferenceProxy;
721
			fileType = wrapper.cfbundle;
722
			path = IpuCountTests.xctest;
723
			remoteRef = 042609F222B22D94002C1B81 /* PBXContainerItemProxy */;
724
			sourceTree = BUILT_PRODUCTS_DIR;
725
		};
726
/* End PBXReferenceProxy section */
727
331 728
/* Begin PBXResourcesBuildPhase section */
332 729
		EA45A58A1E077735001275C9 /* Resources */ = {
333 730
			isa = PBXResourcesBuildPhase;

BIN
SuperMenu/SuperMenu.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate


+ 50 - 97
SuperMenu/SuperMenu.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@ -282,11 +282,11 @@
282 282
            ignoreCount = "0"
283 283
            continueAfterRunningActions = "No"
284 284
            filePath = "../WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m"
285
            timestampString = "580207365.971871"
285
            timestampString = "582552692.784901"
286 286
            startingColumnNumber = "9223372036854775807"
287 287
            endingColumnNumber = "9223372036854775807"
288
            startingLineNumber = "769"
289
            endingLineNumber = "769"
288
            startingLineNumber = "776"
289
            endingLineNumber = "776"
290 290
            landmarkName = "-openSlidingMenu:"
291 291
            landmarkType = "7">
292 292
         </BreakpointContent>
@ -490,13 +490,13 @@
490 490
            ignoreCount = "0"
491 491
            continueAfterRunningActions = "No"
492 492
            filePath = "../WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m"
493
            timestampString = "580207365.972846"
493
            timestampString = "582552692.785331"
494 494
            startingColumnNumber = "9223372036854775807"
495 495
            endingColumnNumber = "9223372036854775807"
496
            startingLineNumber = "166"
497
            endingLineNumber = "166"
498
            landmarkName = "-openBrowser:"
499
            landmarkType = "7">
496
            startingLineNumber = "169"
497
            endingLineNumber = "169"
498
            landmarkName = "WDFMobileUI"
499
            landmarkType = "3">
500 500
         </BreakpointContent>
501 501
      </BreakpointProxy>
502 502
      <BreakpointProxy
@ -737,6 +737,38 @@
737 737
            endingLineNumber = "472"
738 738
            landmarkName = "-downloadFile:"
739 739
            landmarkType = "7">
740
            <Locations>
741
               <Location
742
                  shouldBeEnabled = "Yes"
743
                  ignoreCount = "0"
744
                  continueAfterRunningActions = "No"
745
                  symbolName = "-[WDFUploadDownload downloadFile:]"
746
                  moduleName = "WadeMobileFunc"
747
                  usesParentBreakpointCondition = "Yes"
748
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/WadeMobileFunc/WadeMobileFunc/WDFUploadDownload.m"
749
                  timestampString = "582552693.204863"
750
                  startingColumnNumber = "9223372036854775807"
751
                  endingColumnNumber = "9223372036854775807"
752
                  startingLineNumber = "472"
753
                  endingLineNumber = "472"
754
                  offsetFromSymbolStart = "49">
755
               </Location>
756
               <Location
757
                  shouldBeEnabled = "Yes"
758
                  ignoreCount = "0"
759
                  continueAfterRunningActions = "No"
760
                  symbolName = "-[WDFUploadDownload downloadFile:]"
761
                  moduleName = "WadeMobileFunc"
762
                  usesParentBreakpointCondition = "Yes"
763
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/WadeMobileFunc/WadeMobileFunc/WDFUploadDownload.m"
764
                  timestampString = "582552693.206704"
765
                  startingColumnNumber = "9223372036854775807"
766
                  endingColumnNumber = "9223372036854775807"
767
                  startingLineNumber = "472"
768
                  endingLineNumber = "472"
769
                  offsetFromSymbolStart = "215">
770
               </Location>
771
            </Locations>
740 772
         </BreakpointContent>
741 773
      </BreakpointProxy>
742 774
      <BreakpointProxy
@ -889,85 +921,6 @@
889 921
            shouldBeEnabled = "Yes"
890 922
            ignoreCount = "0"
891 923
            continueAfterRunningActions = "No"
892
            filePath = "../../ios/WadeMobile/WadeMobile/frame/task/ResourcesTask.m"
893
            timestampString = "574678575.094924"
894
            startingColumnNumber = "9223372036854775807"
895
            endingColumnNumber = "9223372036854775807"
896
            startingLineNumber = "106"
897
            endingLineNumber = "106"
898
            landmarkName = "-doTask:"
899
            landmarkType = "7">
900
         </BreakpointContent>
901
      </BreakpointProxy>
902
      <BreakpointProxy
903
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
904
         <BreakpointContent
905
            shouldBeEnabled = "Yes"
906
            ignoreCount = "0"
907
            continueAfterRunningActions = "No"
908
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/IpuTemplateSubController.m"
909
            timestampString = "576744120.3030421"
910
            startingColumnNumber = "9223372036854775807"
911
            endingColumnNumber = "9223372036854775807"
912
            startingLineNumber = "242"
913
            endingLineNumber = "242"
914
            landmarkName = "-showWWANUpdateAlert"
915
            landmarkType = "7">
916
            <Locations>
917
               <Location
918
                  shouldBeEnabled = "Yes"
919
                  ignoreCount = "0"
920
                  continueAfterRunningActions = "No"
921
                  symbolName = "-[IpuTemplateSubController showWWANUpdateAlert]"
922
                  moduleName = "WadeMobile"
923
                  usesParentBreakpointCondition = "Yes"
924
                  urlString = "file:///Users/mac/work/asiainfo/ios/WadeMobile/WadeMobile/frame/template/IpuTemplateSubController.m"
925
                  timestampString = "581098534.157608"
926
                  startingColumnNumber = "9223372036854775807"
927
                  endingColumnNumber = "9223372036854775807"
928
                  startingLineNumber = "242"
929
                  endingLineNumber = "242"
930
                  offsetFromSymbolStart = "92">
931
               </Location>
932
               <Location
933
                  shouldBeEnabled = "Yes"
934
                  ignoreCount = "0"
935
                  continueAfterRunningActions = "No"
936
                  symbolName = "__47-[IpuTemplateSubController showWWANUpdateAlert]_block_invoke"
937
                  moduleName = "WadeMobile"
938
                  usesParentBreakpointCondition = "Yes"
939
                  urlString = "file:///Users/mac/work/asiainfo/ios/WadeMobile/WadeMobile/frame/template/IpuTemplateSubController.m"
940
                  timestampString = "581098534.160494"
941
                  startingColumnNumber = "9223372036854775807"
942
                  endingColumnNumber = "9223372036854775807"
943
                  startingLineNumber = "243"
944
                  endingLineNumber = "243"
945
                  offsetFromSymbolStart = "72">
946
               </Location>
947
               <Location
948
                  shouldBeEnabled = "Yes"
949
                  ignoreCount = "0"
950
                  continueAfterRunningActions = "No"
951
                  symbolName = "__destroy_helper_block_.169"
952
                  moduleName = "WadeMobile"
953
                  usesParentBreakpointCondition = "Yes"
954
                  urlString = "file:///Users/mac/work/asiainfo/ios/WadeMobile/WadeMobile/frame/template/IpuTemplateSubController.m"
955
                  timestampString = "581098534.163483"
956
                  startingColumnNumber = "9223372036854775807"
957
                  endingColumnNumber = "9223372036854775807"
958
                  startingLineNumber = "242"
959
                  endingLineNumber = "242"
960
                  offsetFromSymbolStart = "20">
961
               </Location>
962
            </Locations>
963
         </BreakpointContent>
964
      </BreakpointProxy>
965
      <BreakpointProxy
966
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
967
         <BreakpointContent
968
            shouldBeEnabled = "Yes"
969
            ignoreCount = "0"
970
            continueAfterRunningActions = "No"
971 924
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDTemplateMainController.m"
972 925
            timestampString = "574678951.775331"
973 926
            startingColumnNumber = "9223372036854775807"
@ -1001,12 +954,12 @@
1001 954
                  moduleName = "WadeMobile"
1002 955
                  usesParentBreakpointCondition = "Yes"
1003 956
                  urlString = "file:///Users/mac/work/asiainfo/ios/WadeMobile/WadeMobile/frame/template/WDTemplateMainController.m"
1004
                  timestampString = "581098534.172424"
957
                  timestampString = "582552693.5961421"
1005 958
                  startingColumnNumber = "9223372036854775807"
1006 959
                  endingColumnNumber = "9223372036854775807"
1007 960
                  startingLineNumber = "202"
1008 961
                  endingLineNumber = "202"
1009
                  offsetFromSymbolStart = "164">
962
                  offsetFromSymbolStart = "160">
1010 963
               </Location>
1011 964
               <Location
1012 965
                  shouldBeEnabled = "Yes"
@ -1016,12 +969,12 @@
1016 969
                  moduleName = "WadeMobile"
1017 970
                  usesParentBreakpointCondition = "Yes"
1018 971
                  urlString = "file:///Users/mac/work/asiainfo/ios/WadeMobile/WadeMobile/frame/template/WDTemplateMainController.m"
1019
                  timestampString = "581098534.174654"
972
                  timestampString = "582552693.598123"
1020 973
                  startingColumnNumber = "9223372036854775807"
1021 974
                  endingColumnNumber = "9223372036854775807"
1022 975
                  startingLineNumber = "203"
1023 976
                  endingLineNumber = "203"
1024
                  offsetFromSymbolStart = "72">
977
                  offsetFromSymbolStart = "69">
1025 978
               </Location>
1026 979
               <Location
1027 980
                  shouldBeEnabled = "Yes"
@ -1031,12 +984,12 @@
1031 984
                  moduleName = "WadeMobile"
1032 985
                  usesParentBreakpointCondition = "Yes"
1033 986
                  urlString = "file:///Users/mac/work/asiainfo/ios/WadeMobile/WadeMobile/frame/template/WDTemplateMainController.m"
1034
                  timestampString = "581098534.1767499"
987
                  timestampString = "582552693.600176"
1035 988
                  startingColumnNumber = "9223372036854775807"
1036 989
                  endingColumnNumber = "9223372036854775807"
1037 990
                  startingLineNumber = "202"
1038 991
                  endingLineNumber = "202"
1039
                  offsetFromSymbolStart = "20">
992
                  offsetFromSymbolStart = "16">
1040 993
               </Location>
1041 994
            </Locations>
1042 995
         </BreakpointContent>
@ -1112,11 +1065,11 @@
1112 1065
            ignoreCount = "0"
1113 1066
            continueAfterRunningActions = "No"
1114 1067
            filePath = "../WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m"
1115
            timestampString = "580207365.973726"
1068
            timestampString = "582552692.785666"
1116 1069
            startingColumnNumber = "9223372036854775807"
1117 1070
            endingColumnNumber = "9223372036854775807"
1118
            startingLineNumber = "561"
1119
            endingLineNumber = "561"
1071
            startingLineNumber = "568"
1072
            endingLineNumber = "568"
1120 1073
            landmarkName = "WDFMobileUI"
1121 1074
            landmarkType = "3">
1122 1075
         </BreakpointContent>
@ -1128,7 +1081,7 @@
1128 1081
            ignoreCount = "0"
1129 1082
            continueAfterRunningActions = "No"
1130 1083
            filePath = "SuperMenu/multiple/AppManagePlugin.m"
1131
            timestampString = "580891697.41129"
1084
            timestampString = "582542271.412514"
1132 1085
            startingColumnNumber = "9223372036854775807"
1133 1086
            endingColumnNumber = "9223372036854775807"
1134 1087
            startingLineNumber = "263"

+ 1 - 1
SuperMenu/SuperMenu.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,7 +7,7 @@
7 7
		<key>SuperMenu.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>3</integer>
10
			<integer>2</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

+ 5 - 2
SuperMenu/SuperMenu/multiple/AppManagePlugin.m

@ -22,7 +22,7 @@
22 22
#import <WadeMobile/WDMobileConfig.h>
23 23
#import <WadeMobile/WDActionConfig.h>
24 24
#import <WadeMobile/WDTemplateDownloader.h>
25
#import <WadeMobile/WDTemplateNavigateController.h>
25
#import <WadeMobile/WDTemplateOpenUrlController.h>
26 26
27 27
#import "AppDelegate.h"
28 28
@ -155,7 +155,10 @@
155 155
                hiddenBar = [param[4] boolValue];
156 156
            }
157 157
        }
158
        WDTemplateNavigateController *vc = [[WDTemplateNavigateController alloc] initWithUrl:url Callback:nil Title:title Operates:operates Colors:colors Hidden:hiddenBar];
158
//        WDTemplateOpenUrlController *vc = [[WDTemplateOpenUrlController alloc] initWithUrl:url Callback:nil Title:title Operates:operates Colors:colors Hidden:hiddenBar];
159
        operates = @[@"1",@"1",@"1",@"1"];
160
        WDTemplateOpenUrlController *vc = [[WDTemplateOpenUrlController alloc] initWithUrl:url Callback:nil Title:@"测试" Operates:operates Colors:nil Hidden:NO];
161
        
159 162
        vc.plugin = self;
160 163
        UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:vc];
161 164
        [[self getViewController] presentViewController:nc animated:YES completion:^{

+ 3 - 3
WadeMobileFunc/WadeMobileFunc.xcodeproj/xcuserdata/mac.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@ -26,7 +26,7 @@
26 26
                  moduleName = "WadeMobileFunc"
27 27
                  usesParentBreakpointCondition = "Yes"
28 28
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/WadeMobileFunc/WadeMobileFunc/WDFSocial.m"
29
                  timestampString = "582022677.428421"
29
                  timestampString = "582625263.892311"
30 30
                  startingColumnNumber = "9223372036854775807"
31 31
                  endingColumnNumber = "9223372036854775807"
32 32
                  startingLineNumber = "291"
@ -41,7 +41,7 @@
41 41
                  moduleName = "WadeMobileFunc"
42 42
                  usesParentBreakpointCondition = "Yes"
43 43
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/WadeMobileFunc/WadeMobileFunc/WDFSocial.m"
44
                  timestampString = "582022677.430812"
44
                  timestampString = "582625263.8942569"
45 45
                  startingColumnNumber = "9223372036854775807"
46 46
                  endingColumnNumber = "9223372036854775807"
47 47
                  startingLineNumber = "292"
@ -56,7 +56,7 @@
56 56
                  moduleName = "WadeMobileFunc"
57 57
                  usesParentBreakpointCondition = "Yes"
58 58
                  urlString = "file:///Users/mac/work/asiainfo/ios-share/WadeMobileFunc/WadeMobileFunc/WDFSocial.m"
59
                  timestampString = "582022677.4330519"
59
                  timestampString = "582625263.896144"
60 60
                  startingColumnNumber = "9223372036854775807"
61 61
                  endingColumnNumber = "9223372036854775807"
62 62
                  startingLineNumber = "291"

+ 3 - 3
WadeMobileFunc/WadeMobileFunc.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,17 +7,17 @@
7 7
		<key>WadeMobileFunc.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>18</integer>
10
			<integer>11</integer>
11 11
		</dict>
12 12
		<key>WadeMobileFunc4Appstore.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>20</integer>
15
			<integer>6</integer>
16 16
		</dict>
17 17
		<key>WadeMobileFuncAggregate.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>19</integer>
20
			<integer>7</integer>
21 21
		</dict>
22 22
	</dict>
23 23
</dict>

+ 3 - 5
WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m

@ -19,6 +19,7 @@
19 19
#import <WadeMobile/IpuMacroDefinition.h>
20 20
#import <WadeMobile/WDStringUtility.h>
21 21
#import <WadeMobile/WDTemplateNavigateController.h>
22
#import <WadeMobile/WDTemplateOpenUrlController.h>
22 23
23 24
#import <WadeMobileUI/WDUIUtility.h>
24 25
#import <WadeMobileUI/WDAlertViewController.h>
@ -27,7 +28,6 @@
27 28
#import <WadeMobileUI/WDWindowViewController.h>
28 29
#import <WadeMobileUI/IpuDatePickerView.h>
29 30
30
//#import <IpuCount/IpuCount.h>
31 31
32 32
#define deviceHeight ([[UIScreen mainScreen] bounds].size.height)
33 33
#define deviceWidth ([[UIScreen mainScreen] bounds].size.width)
@ -273,8 +273,7 @@
273 273
    if([param count] > 2 && param[2] != [NSNull null] ){
274 274
        isCurr = [@"true" isEqualToString:param[2]];
275 275
    }
276
    NSLog(@"WDFMobileUI执行openTemplate:插件========pageAction:%@,,,pageParam:%@",pageAction,pageParam);
277
//    [IpuCountReport reportOperWithType:OPERATE_UPDATE remark1:@"WDFMobileUI执行openTemplate插件,pageAction===" remark2:pageAction];
276
//    NSLog(@"WDFMobileUI执行openTemplate:插件========pageAction:%@,,,pageParam:%@",pageAction,pageParam);
278 277
    [self openTemplate:pageAction withData:pageParam isCurr:isCurr];
279 278
}
280 279
@ -371,8 +370,7 @@
371 370
    if ([param count] > 2 && param[2] != [NSNull null]) {
372 371
        isCurr = [@"true" isEqualToString:param[2]];
373 372
    }
374
    NSLog(@"WDFMobileUI执行openPage:插件========pageAction:%@,,,dataParam:%@",pageAction,dataParam);
375
//    [IpuCountReport reportOperWithType:OPERATE_UPDATE remark1:@"WDFMobileUI执行openPage插件,pageAction===" remark2:pageAction];
373
//    NSLog(@"WDFMobileUI执行openPage:插件========pageAction:%@,,,dataParam:%@",pageAction,dataParam);
376 374
    [self openPage:pageAction data:dataParam isCurrView:isCurr];
377 375
}
378 376

+ 389 - 0
display-center/display-center.xcodeproj/project.pbxproj

@ -91,6 +91,139 @@
91 91
/* End PBXBuildFile section */
92 92
93 93
/* Begin PBXContainerItemProxy section */
94
		04DDB62A22B7852B001CA8CD /* PBXContainerItemProxy */ = {
95
			isa = PBXContainerItemProxy;
96
			containerPortal = 04DDB5FB22B7852A001CA8CD /* WadeMobileUI.xcodeproj */;
97
			proxyType = 2;
98
			remoteGlobalIDString = E2E37D731B21F3090047D5D3;
99
			remoteInfo = WadeMobileUI;
100
		};
101
		04DDB62C22B7852B001CA8CD /* PBXContainerItemProxy */ = {
102
			isa = PBXContainerItemProxy;
103
			containerPortal = 04DDB5FB22B7852A001CA8CD /* WadeMobileUI.xcodeproj */;
104
			proxyType = 2;
105
			remoteGlobalIDString = E2E37D7E1B21F3090047D5D3;
106
			remoteInfo = WadeMobileUITests;
107
		};
108
		04DDB63722B7853A001CA8CD /* PBXContainerItemProxy */ = {
109
			isa = PBXContainerItemProxy;
110
			containerPortal = 04DDB62E22B78539001CA8CD /* WadeMobile.xcodeproj */;
111
			proxyType = 2;
112
			remoteGlobalIDString = 614A1CD61B2142130099793B;
113
			remoteInfo = WadeMobile;
114
		};
115
		04DDB63922B7853A001CA8CD /* PBXContainerItemProxy */ = {
116
			isa = PBXContainerItemProxy;
117
			containerPortal = 04DDB62E22B78539001CA8CD /* WadeMobile.xcodeproj */;
118
			proxyType = 2;
119
			remoteGlobalIDString = 614A1CE11B2142130099793B;
120
			remoteInfo = WadeMobileTests;
121
		};
122
		04DDB63B22B7853A001CA8CD /* PBXContainerItemProxy */ = {
123
			isa = PBXContainerItemProxy;
124
			containerPortal = 04DDB62E22B78539001CA8CD /* WadeMobile.xcodeproj */;
125
			proxyType = 2;
126
			remoteGlobalIDString = E2D93A741B89BA2800D1DE7C;
127
			remoteInfo = WadeMobileBundle;
128
		};
129
		04DDB63D22B7853A001CA8CD /* PBXContainerItemProxy */ = {
130
			isa = PBXContainerItemProxy;
131
			containerPortal = 04DDB62E22B78539001CA8CD /* WadeMobile.xcodeproj */;
132
			proxyType = 2;
133
			remoteGlobalIDString = 0A791C221FD102C0003CD586;
134
			remoteInfo = WadeMobileTestUnit;
135
		};
136
		04DDB64622B78549001CA8CD /* PBXContainerItemProxy */ = {
137
			isa = PBXContainerItemProxy;
138
			containerPortal = 04DDB63F22B78549001CA8CD /* WadeMobileFunc.xcodeproj */;
139
			proxyType = 2;
140
			remoteGlobalIDString = E2DE1AD41B42DD9500762141;
141
			remoteInfo = WadeMobileFunc;
142
		};
143
		04DDB64822B78549001CA8CD /* PBXContainerItemProxy */ = {
144
			isa = PBXContainerItemProxy;
145
			containerPortal = 04DDB63F22B78549001CA8CD /* WadeMobileFunc.xcodeproj */;
146
			proxyType = 2;
147
			remoteGlobalIDString = 0AE1E0841C7EE95900FCCD24;
148
			remoteInfo = WadeMobileFuncTests;
149
		};
150
		04DDB65122B78558001CA8CD /* PBXContainerItemProxy */ = {
151
			isa = PBXContainerItemProxy;
152
			containerPortal = 04DDB64A22B78558001CA8CD /* IpuLib.xcodeproj */;
153
			proxyType = 2;
154
			remoteGlobalIDString = E2BECD581BF8EC290077807A;
155
			remoteInfo = IpuLib;
156
		};
157
		04DDB65322B78558001CA8CD /* PBXContainerItemProxy */ = {
158
			isa = PBXContainerItemProxy;
159
			containerPortal = 04DDB64A22B78558001CA8CD /* IpuLib.xcodeproj */;
160
			proxyType = 2;
161
			remoteGlobalIDString = E2BECD631BF8EC290077807A;
162
			remoteInfo = IpuLibTests;
163
		};
164
		04DDB65C22B78569001CA8CD /* PBXContainerItemProxy */ = {
165
			isa = PBXContainerItemProxy;
166
			containerPortal = 04DDB65522B78569001CA8CD /* IpuQrCode.xcodeproj */;
167
			proxyType = 2;
168
			remoteGlobalIDString = E2164EC31B4D71A0001DDCA5;
169
			remoteInfo = IpuQrCode;
170
		};
171
		04DDB65E22B78569001CA8CD /* PBXContainerItemProxy */ = {
172
			isa = PBXContainerItemProxy;
173
			containerPortal = 04DDB65522B78569001CA8CD /* IpuQrCode.xcodeproj */;
174
			proxyType = 2;
175
			remoteGlobalIDString = E2164ECE1B4D71A0001DDCA5;
176
			remoteInfo = IpuQrCodeTests;
177
		};
178
		04DDB66022B78569001CA8CD /* PBXContainerItemProxy */ = {
179
			isa = PBXContainerItemProxy;
180
			containerPortal = 04DDB65522B78569001CA8CD /* IpuQrCode.xcodeproj */;
181
			proxyType = 2;
182
			remoteGlobalIDString = 0A35A5921D34DA900087BBCA;
183
			remoteInfo = IpuQrCodeBundle;
184
		};
185
		04DDB66822B78579001CA8CD /* PBXContainerItemProxy */ = {
186
			isa = PBXContainerItemProxy;
187
			containerPortal = 04DDB66222B78579001CA8CD /* IpuPush.xcodeproj */;
188
			proxyType = 2;
189
			remoteGlobalIDString = 0A159C231D2B4BD70025166A;
190
			remoteInfo = IpuPush;
191
		};
192
		04DDB66A22B78579001CA8CD /* PBXContainerItemProxy */ = {
193
			isa = PBXContainerItemProxy;
194
			containerPortal = 04DDB66222B78579001CA8CD /* IpuPush.xcodeproj */;
195
			proxyType = 2;
196
			remoteGlobalIDString = 0A159C2D1D2B4BD70025166A;
197
			remoteInfo = IpuPushTests;
198
		};
199
		04DDB67122B7858B001CA8CD /* PBXContainerItemProxy */ = {
200
			isa = PBXContainerItemProxy;
201
			containerPortal = 04DDB66C22B7858B001CA8CD /* IpuMap.xcodeproj */;
202
			proxyType = 2;
203
			remoteGlobalIDString = B2461A1D20E0807800BE2236;
204
			remoteInfo = IpuMap;
205
		};
206
		04DDB67322B7858B001CA8CD /* PBXContainerItemProxy */ = {
207
			isa = PBXContainerItemProxy;
208
			containerPortal = 04DDB66C22B7858B001CA8CD /* IpuMap.xcodeproj */;
209
			proxyType = 2;
210
			remoteGlobalIDString = B2FC01FA20E1CCE9009ECF6B;
211
			remoteInfo = IpuMapBundle;
212
		};
213
		04DDB67A22B785A2001CA8CD /* PBXContainerItemProxy */ = {
214
			isa = PBXContainerItemProxy;
215
			containerPortal = 04DDB67522B785A2001CA8CD /* IpuCount.xcodeproj */;
216
			proxyType = 2;
217
			remoteGlobalIDString = EAA4B4D61C897885000342A1;
218
			remoteInfo = IpuCount;
219
		};
220
		04DDB67C22B785A2001CA8CD /* PBXContainerItemProxy */ = {
221
			isa = PBXContainerItemProxy;
222
			containerPortal = 04DDB67522B785A2001CA8CD /* IpuCount.xcodeproj */;
223
			proxyType = 2;
224
			remoteGlobalIDString = EAA4B4E01C897885000342A1;
225
			remoteInfo = IpuCountTests;
226
		};
94 227
		B25B8FDF21901B0C001A240E /* PBXContainerItemProxy */ = {
95 228
			isa = PBXContainerItemProxy;
96 229
			containerPortal = B25B8FD821901B0C001A240E /* RCTWebSocket.xcodeproj */;
@ -400,6 +533,14 @@
400 533
401 534
/* Begin PBXFileReference section */
402 535
		0429A206218046E2003CEE83 /* WadeMobileFuncBundle.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = WadeMobileFuncBundle.bundle; path = ../IpuCommon/Frameworks/WadeMobileFuncBundle.bundle; sourceTree = "<group>"; };
536
		04DDB5FB22B7852A001CA8CD /* WadeMobileUI.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobileUI.xcodeproj; path = ../../ios/WadeMobileUI/WadeMobileUI.xcodeproj; sourceTree = "<group>"; };
537
		04DDB62E22B78539001CA8CD /* WadeMobile.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobile.xcodeproj; path = ../../ios/WadeMobile/WadeMobile.xcodeproj; sourceTree = "<group>"; };
538
		04DDB63F22B78549001CA8CD /* WadeMobileFunc.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobileFunc.xcodeproj; path = ../WadeMobileFunc/WadeMobileFunc.xcodeproj; sourceTree = "<group>"; };
539
		04DDB64A22B78558001CA8CD /* IpuLib.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuLib.xcodeproj; path = ../IpuLib/IpuLib.xcodeproj; sourceTree = "<group>"; };
540
		04DDB65522B78569001CA8CD /* IpuQrCode.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuQrCode.xcodeproj; path = "../../ios-plugin/IpuQrCode/IpuQrCode.xcodeproj"; sourceTree = "<group>"; };
541
		04DDB66222B78579001CA8CD /* IpuPush.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuPush.xcodeproj; path = "../../ios-plugin/IpuPush/IpuPush.xcodeproj"; sourceTree = "<group>"; };
542
		04DDB66C22B7858B001CA8CD /* IpuMap.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuMap.xcodeproj; path = "../../ios-plugin/IpuMap/IpuMap.xcodeproj"; sourceTree = "<group>"; };
543
		04DDB67522B785A2001CA8CD /* IpuCount.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = IpuCount.xcodeproj; path = "../../ios-plugin/IpuCount/IpuCount.xcodeproj"; sourceTree = "<group>"; };
403 544
		B247A76B20E0D33A00117A38 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
404 545
		B247A76D20E0D34100117A38 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
405 546
		B247A76F20E0D34700117A38 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
@ -565,6 +706,81 @@
565 706
			name = Frameworks;
566 707
			sourceTree = "<group>";
567 708
		};
709
		04DDB5FC22B7852A001CA8CD /* Products */ = {
710
			isa = PBXGroup;
711
			children = (
712
				04DDB62B22B7852B001CA8CD /* WadeMobileUI.framework */,
713
				04DDB62D22B7852B001CA8CD /* WadeMobileUITests.xctest */,
714
			);
715
			name = Products;
716
			sourceTree = "<group>";
717
		};
718
		04DDB62F22B78539001CA8CD /* Products */ = {
719
			isa = PBXGroup;
720
			children = (
721
				04DDB63822B7853A001CA8CD /* WadeMobile.framework */,
722
				04DDB63A22B7853A001CA8CD /* WadeMobileTests.xctest */,
723
				04DDB63C22B7853A001CA8CD /* WadeMobileBundle.bundle */,
724
				04DDB63E22B7853A001CA8CD /* WadeMobileTestUnit.xctest */,
725
			);
726
			name = Products;
727
			sourceTree = "<group>";
728
		};
729
		04DDB64022B78549001CA8CD /* Products */ = {
730
			isa = PBXGroup;
731
			children = (
732
				04DDB64722B78549001CA8CD /* WadeMobileFunc.framework */,
733
				04DDB64922B78549001CA8CD /* WadeMobileFuncTests.xctest */,
734
			);
735
			name = Products;
736
			sourceTree = "<group>";
737
		};
738
		04DDB64B22B78558001CA8CD /* Products */ = {
739
			isa = PBXGroup;
740
			children = (
741
				04DDB65222B78558001CA8CD /* IpuLib.framework */,
742
				04DDB65422B78558001CA8CD /* IpuLibTests.xctest */,
743
			);
744
			name = Products;
745
			sourceTree = "<group>";
746
		};
747
		04DDB65622B78569001CA8CD /* Products */ = {
748
			isa = PBXGroup;
749
			children = (
750
				04DDB65D22B78569001CA8CD /* IpuQrCode.framework */,
751
				04DDB65F22B78569001CA8CD /* IpuQrCodeTests.xctest */,
752
				04DDB66122B78569001CA8CD /* IpuQrCodeBundle.bundle */,
753
			);
754
			name = Products;
755
			sourceTree = "<group>";
756
		};
757
		04DDB66322B78579001CA8CD /* Products */ = {
758
			isa = PBXGroup;
759
			children = (
760
				04DDB66922B78579001CA8CD /* IpuPush.framework */,
761
				04DDB66B22B78579001CA8CD /* IpuPushTests.xctest */,
762
			);
763
			name = Products;
764
			sourceTree = "<group>";
765
		};
766
		04DDB66D22B7858B001CA8CD /* Products */ = {
767
			isa = PBXGroup;
768
			children = (
769
				04DDB67222B7858B001CA8CD /* IpuMap.framework */,
770
				04DDB67422B7858B001CA8CD /* IpuMapBundle.bundle */,
771
			);
772
			name = Products;
773
			sourceTree = "<group>";
774
		};
775
		04DDB67622B785A2001CA8CD /* Products */ = {
776
			isa = PBXGroup;
777
			children = (
778
				04DDB67B22B785A2001CA8CD /* IpuCount.framework */,
779
				04DDB67D22B785A2001CA8CD /* IpuCountTests.xctest */,
780
			);
781
			name = Products;
782
			sourceTree = "<group>";
783
		};
568 784
		B254174121A5329B00ABCE93 /* IpuRN */ = {
569 785
			isa = PBXGroup;
570 786
			children = (
@ -790,6 +1006,14 @@
790 1006
		EA8712331ECD8B580045E19A = {
791 1007
			isa = PBXGroup;
792 1008
			children = (
1009
				04DDB67522B785A2001CA8CD /* IpuCount.xcodeproj */,
1010
				04DDB66C22B7858B001CA8CD /* IpuMap.xcodeproj */,
1011
				04DDB66222B78579001CA8CD /* IpuPush.xcodeproj */,
1012
				04DDB65522B78569001CA8CD /* IpuQrCode.xcodeproj */,
1013
				04DDB64A22B78558001CA8CD /* IpuLib.xcodeproj */,
1014
				04DDB63F22B78549001CA8CD /* WadeMobileFunc.xcodeproj */,
1015
				04DDB62E22B78539001CA8CD /* WadeMobile.xcodeproj */,
1016
				04DDB5FB22B7852A001CA8CD /* WadeMobileUI.xcodeproj */,
793 1017
				B2E563B921E5E07A00B67E21 /* mapapi.bundle */,
794 1018
				B2E5637921E4A39E00B67E21 /* BDMapLibs */,
795 1019
				B2E563A821E4A39E00B67E21 /* IpuBDMap */,
@ -910,6 +1134,26 @@
910 1134
					ProjectRef = B25B90B821903F2E001A240E /* ART.xcodeproj */;
911 1135
				},
912 1136
				{
1137
					ProductGroup = 04DDB67622B785A2001CA8CD /* Products */;
1138
					ProjectRef = 04DDB67522B785A2001CA8CD /* IpuCount.xcodeproj */;
1139
				},
1140
				{
1141
					ProductGroup = 04DDB64B22B78558001CA8CD /* Products */;
1142
					ProjectRef = 04DDB64A22B78558001CA8CD /* IpuLib.xcodeproj */;
1143
				},
1144
				{
1145
					ProductGroup = 04DDB66D22B7858B001CA8CD /* Products */;
1146
					ProjectRef = 04DDB66C22B7858B001CA8CD /* IpuMap.xcodeproj */;
1147
				},
1148
				{
1149
					ProductGroup = 04DDB66322B78579001CA8CD /* Products */;
1150
					ProjectRef = 04DDB66222B78579001CA8CD /* IpuPush.xcodeproj */;
1151
				},
1152
				{
1153
					ProductGroup = 04DDB65622B78569001CA8CD /* Products */;
1154
					ProjectRef = 04DDB65522B78569001CA8CD /* IpuQrCode.xcodeproj */;
1155
				},
1156
				{
913 1157
					ProductGroup = B25B908821903E82001A240E /* Products */;
914 1158
					ProjectRef = B25B908721903E82001A240E /* RCTAnimation.xcodeproj */;
915 1159
				},
@ -961,6 +1205,18 @@
961 1205
					ProductGroup = B2FC4AD62191392D008F7621 /* Products */;
962 1206
					ProjectRef = B2FC4AD52191392D008F7621 /* RNCamera.xcodeproj */;
963 1207
				},
1208
				{
1209
					ProductGroup = 04DDB62F22B78539001CA8CD /* Products */;
1210
					ProjectRef = 04DDB62E22B78539001CA8CD /* WadeMobile.xcodeproj */;
1211
				},
1212
				{
1213
					ProductGroup = 04DDB64022B78549001CA8CD /* Products */;
1214
					ProjectRef = 04DDB63F22B78549001CA8CD /* WadeMobileFunc.xcodeproj */;
1215
				},
1216
				{
1217
					ProductGroup = 04DDB5FC22B7852A001CA8CD /* Products */;
1218
					ProjectRef = 04DDB5FB22B7852A001CA8CD /* WadeMobileUI.xcodeproj */;
1219
				},
964 1220
			);
965 1221
			projectRoot = "";
966 1222
			targets = (
@ -970,6 +1226,139 @@
970 1226
/* End PBXProject section */
971 1227
972 1228
/* Begin PBXReferenceProxy section */
1229
		04DDB62B22B7852B001CA8CD /* WadeMobileUI.framework */ = {
1230
			isa = PBXReferenceProxy;
1231
			fileType = wrapper.framework;
1232
			path = WadeMobileUI.framework;
1233
			remoteRef = 04DDB62A22B7852B001CA8CD /* PBXContainerItemProxy */;
1234
			sourceTree = BUILT_PRODUCTS_DIR;
1235
		};
1236
		04DDB62D22B7852B001CA8CD /* WadeMobileUITests.xctest */ = {
1237
			isa = PBXReferenceProxy;
1238
			fileType = wrapper.cfbundle;
1239
			path = WadeMobileUITests.xctest;
1240
			remoteRef = 04DDB62C22B7852B001CA8CD /* PBXContainerItemProxy */;
1241
			sourceTree = BUILT_PRODUCTS_DIR;
1242
		};
1243
		04DDB63822B7853A001CA8CD /* WadeMobile.framework */ = {
1244
			isa = PBXReferenceProxy;
1245
			fileType = wrapper.framework;
1246
			path = WadeMobile.framework;
1247
			remoteRef = 04DDB63722B7853A001CA8CD /* PBXContainerItemProxy */;
1248
			sourceTree = BUILT_PRODUCTS_DIR;
1249
		};
1250
		04DDB63A22B7853A001CA8CD /* WadeMobileTests.xctest */ = {
1251
			isa = PBXReferenceProxy;
1252
			fileType = wrapper.cfbundle;
1253
			path = WadeMobileTests.xctest;
1254
			remoteRef = 04DDB63922B7853A001CA8CD /* PBXContainerItemProxy */;
1255
			sourceTree = BUILT_PRODUCTS_DIR;
1256
		};
1257
		04DDB63C22B7853A001CA8CD /* WadeMobileBundle.bundle */ = {
1258
			isa = PBXReferenceProxy;
1259
			fileType = wrapper.cfbundle;
1260
			path = WadeMobileBundle.bundle;
1261
			remoteRef = 04DDB63B22B7853A001CA8CD /* PBXContainerItemProxy */;
1262
			sourceTree = BUILT_PRODUCTS_DIR;
1263
		};
1264
		04DDB63E22B7853A001CA8CD /* WadeMobileTestUnit.xctest */ = {
1265
			isa = PBXReferenceProxy;
1266
			fileType = wrapper.cfbundle;
1267
			path = WadeMobileTestUnit.xctest;
1268
			remoteRef = 04DDB63D22B7853A001CA8CD /* PBXContainerItemProxy */;
1269
			sourceTree = BUILT_PRODUCTS_DIR;
1270
		};
1271
		04DDB64722B78549001CA8CD /* WadeMobileFunc.framework */ = {
1272
			isa = PBXReferenceProxy;
1273
			fileType = wrapper.framework;
1274
			path = WadeMobileFunc.framework;
1275
			remoteRef = 04DDB64622B78549001CA8CD /* PBXContainerItemProxy */;
1276
			sourceTree = BUILT_PRODUCTS_DIR;
1277
		};
1278
		04DDB64922B78549001CA8CD /* WadeMobileFuncTests.xctest */ = {
1279
			isa = PBXReferenceProxy;
1280
			fileType = wrapper.cfbundle;
1281
			path = WadeMobileFuncTests.xctest;
1282
			remoteRef = 04DDB64822B78549001CA8CD /* PBXContainerItemProxy */;
1283
			sourceTree = BUILT_PRODUCTS_DIR;
1284
		};
1285
		04DDB65222B78558001CA8CD /* IpuLib.framework */ = {
1286
			isa = PBXReferenceProxy;
1287
			fileType = wrapper.framework;
1288
			path = IpuLib.framework;
1289
			remoteRef = 04DDB65122B78558001CA8CD /* PBXContainerItemProxy */;
1290
			sourceTree = BUILT_PRODUCTS_DIR;
1291
		};
1292
		04DDB65422B78558001CA8CD /* IpuLibTests.xctest */ = {
1293
			isa = PBXReferenceProxy;
1294
			fileType = wrapper.cfbundle;
1295
			path = IpuLibTests.xctest;
1296
			remoteRef = 04DDB65322B78558001CA8CD /* PBXContainerItemProxy */;
1297
			sourceTree = BUILT_PRODUCTS_DIR;
1298
		};
1299
		04DDB65D22B78569001CA8CD /* IpuQrCode.framework */ = {
1300
			isa = PBXReferenceProxy;
1301
			fileType = wrapper.framework;
1302
			path = IpuQrCode.framework;
1303
			remoteRef = 04DDB65C22B78569001CA8CD /* PBXContainerItemProxy */;
1304
			sourceTree = BUILT_PRODUCTS_DIR;
1305
		};
1306
		04DDB65F22B78569001CA8CD /* IpuQrCodeTests.xctest */ = {
1307
			isa = PBXReferenceProxy;
1308
			fileType = wrapper.cfbundle;
1309
			path = IpuQrCodeTests.xctest;
1310
			remoteRef = 04DDB65E22B78569001CA8CD /* PBXContainerItemProxy */;
1311
			sourceTree = BUILT_PRODUCTS_DIR;
1312
		};
1313
		04DDB66122B78569001CA8CD /* IpuQrCodeBundle.bundle */ = {
1314
			isa = PBXReferenceProxy;
1315
			fileType = wrapper.cfbundle;
1316
			path = IpuQrCodeBundle.bundle;
1317
			remoteRef = 04DDB66022B78569001CA8CD /* PBXContainerItemProxy */;
1318
			sourceTree = BUILT_PRODUCTS_DIR;
1319
		};
1320
		04DDB66922B78579001CA8CD /* IpuPush.framework */ = {
1321
			isa = PBXReferenceProxy;
1322
			fileType = wrapper.framework;
1323
			path = IpuPush.framework;
1324
			remoteRef = 04DDB66822B78579001CA8CD /* PBXContainerItemProxy */;
1325
			sourceTree = BUILT_PRODUCTS_DIR;
1326
		};
1327
		04DDB66B22B78579001CA8CD /* IpuPushTests.xctest */ = {
1328
			isa = PBXReferenceProxy;
1329
			fileType = wrapper.cfbundle;
1330
			path = IpuPushTests.xctest;
1331
			remoteRef = 04DDB66A22B78579001CA8CD /* PBXContainerItemProxy */;
1332
			sourceTree = BUILT_PRODUCTS_DIR;
1333
		};
1334
		04DDB67222B7858B001CA8CD /* IpuMap.framework */ = {
1335
			isa = PBXReferenceProxy;
1336
			fileType = wrapper.framework;
1337
			path = IpuMap.framework;
1338
			remoteRef = 04DDB67122B7858B001CA8CD /* PBXContainerItemProxy */;
1339
			sourceTree = BUILT_PRODUCTS_DIR;
1340
		};
1341
		04DDB67422B7858B001CA8CD /* IpuMapBundle.bundle */ = {
1342
			isa = PBXReferenceProxy;
1343
			fileType = wrapper.cfbundle;
1344
			path = IpuMapBundle.bundle;
1345
			remoteRef = 04DDB67322B7858B001CA8CD /* PBXContainerItemProxy */;
1346
			sourceTree = BUILT_PRODUCTS_DIR;
1347
		};
1348
		04DDB67B22B785A2001CA8CD /* IpuCount.framework */ = {
1349
			isa = PBXReferenceProxy;
1350
			fileType = wrapper.framework;
1351
			path = IpuCount.framework;
1352
			remoteRef = 04DDB67A22B785A2001CA8CD /* PBXContainerItemProxy */;
1353
			sourceTree = BUILT_PRODUCTS_DIR;
1354
		};
1355
		04DDB67D22B785A2001CA8CD /* IpuCountTests.xctest */ = {
1356
			isa = PBXReferenceProxy;
1357
			fileType = wrapper.cfbundle;
1358
			path = IpuCountTests.xctest;
1359
			remoteRef = 04DDB67C22B785A2001CA8CD /* PBXContainerItemProxy */;
1360
			sourceTree = BUILT_PRODUCTS_DIR;
1361
		};
973 1362
		B25B8FE021901B0C001A240E /* libRCTWebSocket.a */ = {
974 1363
			isa = PBXReferenceProxy;
975 1364
			fileType = archive.ar;

BIN
display-center/display-center.xcodeproj/project.xcworkspace/xcuserdata/mac.xcuserdatad/UserInterfaceState.xcuserstate