Browse Source

修复右滑返回功能

liuql6 5 years ago
parent
commit
38a88fdea0
32 changed files with 118 additions and 458 deletions
  1. 4 0
      IpuCommon/Frameworks/WadeMobile.framework/Headers/IpuMultipleAppConfig.h
  2. 1 1
      IpuCommon/Frameworks/WadeMobile.framework/Headers/IpuTemplateSubController.h
  3. 1 0
      IpuCommon/Frameworks/WadeMobile.framework/Headers/WDCommonTool.h
  4. 1 0
      IpuCommon/Frameworks/WadeMobile.framework/Headers/WDTemplateOpenUrlController.h
  5. 3 0
      IpuCommon/Frameworks/WadeMobile.framework/Headers/WDViewController.h
  6. BIN
      IpuCommon/Frameworks/WadeMobile.framework/Info.plist
  7. BIN
      IpuCommon/Frameworks/WadeMobile.framework/WadeMobile
  8. 3 3
      IpuLib/IpuLib.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  9. 0 1
      SuperMenu/Res/config/mobile-config.xml
  10. 14 410
      SuperMenu/SuperMenu.xcodeproj/project.pbxproj
  11. 1 1
      SuperMenu/SuperMenu.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  12. BIN
      SuperMenu/SuperMenu.xcworkspace/xcuserdata/benny.xcuserdatad/UserInterfaceState.xcuserstate
  13. 3 1
      SuperMenu/SuperMenu/multiple/AppManagePlugin.m
  14. 3 3
      WadeMobileFunc/WadeMobileFunc.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  15. 1 1
      display-center/ReactNative/node_modules/react-native-camera/ios/RNCamera.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  16. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/ART/ART.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  17. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  18. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/CameraRoll/RCTCameraRoll.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  19. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  20. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/Image/RCTImage.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  21. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  22. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  23. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  24. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  25. 2 2
      display-center/ReactNative/node_modules/react-native/Libraries/Text/RCTText.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  26. 1 1
      display-center/ReactNative/node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  27. 4 4
      display-center/ReactNative/node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  28. 13 13
      display-center/ReactNative/node_modules/react-native/React/React.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist
  29. 1 0
      display-center/Res/config/mobile-config.xml
  30. 0 3
      display-center/display-center.xcworkspace/contents.xcworkspacedata
  31. BIN
      display-center/display-center.xcworkspace/xcuserdata/benny.xcuserdatad/UserInterfaceState.xcuserstate
  32. 48 0
      display-center/display-center.xcworkspace/xcuserdata/benny.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

+ 4 - 0
IpuCommon/Frameworks/WadeMobile.framework/Headers/IpuMultipleAppConfig.h

@ -25,5 +25,9 @@
25 25
@property (readwrite, nonatomic, copy) NSString* extParam;         //子应用扩展参数
26 26
@property (readwrite, nonatomic, copy) NSString* keyPath;          //子应用公钥路径(存在宿主应用中)
27 27
28
@property (readwrite, nonatomic, copy) NSString* grayRequestHost;      //灰度子应用主机地址
29
@property (readwrite, nonatomic, copy) NSString* grayRequestPath;      //灰度子应用名称
30
@property (readwrite, nonatomic, copy) NSString* grayResourceHost;     //灰度子应用资源地址
31
28 32
@end
29 33

+ 1 - 1
IpuCommon/Frameworks/WadeMobile.framework/Headers/IpuTemplateSubController.h

@ -7,7 +7,7 @@
7 7
//
8 8
9 9
#import "WDTemplateController.h"
10
#import "IpuProgressView.h"
10
//#import "IpuProgressView.h"
11 11
12 12
@interface IpuTemplateSubController : WDTemplateController
13 13

+ 1 - 0
IpuCommon/Frameworks/WadeMobile.framework/Headers/WDCommonTool.h

@ -131,5 +131,6 @@
131 131
+(CGFloat)heightScale:(CGFloat)num;
132 132
133 133
+ (BOOL)isFringeSeries;
134
+(BOOL)isNullWithString:(NSString *)str;
134 135
135 136
@end

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

@ -15,6 +15,7 @@
15 15
@property(nonatomic,strong)UIButton *closeBtn;
16 16
17 17
-(id)initWithShowOperate:(BOOL)show;
18
-(id)initBaseWithShowOperate:(BOOL)show;
18 19
19 20
@end
20 21

+ 3 - 0
IpuCommon/Frameworks/WadeMobile.framework/Headers/WDViewController.h

@ -19,6 +19,9 @@
19 19
#import "IpuMacroDefinition.h"
20 20
21 21
#import <WebKit/WebKit.h>
22
23
#define SlipToRightRate 0.2
24
22 25
@class IPUProgressHUD;
23 26
24 27
@interface WDViewController : UIViewController <UIWebViewDelegate,WadeMobileDelegate,UIGestureRecognizerDelegate,WKUIDelegate,WKNavigationDelegate>

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


BIN
IpuCommon/Frameworks/WadeMobile.framework/WadeMobile


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

@ -12,7 +12,7 @@
12 12
		<key>IpuLib.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>32</integer>
15
			<integer>18</integer>
16 16
		</dict>
17 17
		<key>IpuLib4Appstore.xcscheme</key>
18 18
		<dict>
@ -22,7 +22,7 @@
22 22
		<key>IpuLib4Appstore.xcscheme_^#shared#^_</key>
23 23
		<dict>
24 24
			<key>orderHint</key>
25
			<integer>34</integer>
25
			<integer>19</integer>
26 26
		</dict>
27 27
		<key>IpuLib4Develop.xcscheme</key>
28 28
		<dict>
@ -32,7 +32,7 @@
32 32
		<key>IpuLib4Develop.xcscheme_^#shared#^_</key>
33 33
		<dict>
34 34
			<key>orderHint</key>
35
			<integer>35</integer>
35
			<integer>20</integer>
36 36
		</dict>
37 37
	</dict>
38 38
</dict>

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

@ -36,7 +36,6 @@
36 36
    <!--leijie-->
37 37
<!--    <config name="request_host" value="http://10.13.10.32:8083"/>-->
38 38
<!--    <config name="request_path" value="/superapp"/>-->
39
40 39
    
41 40
    <config name="request_servlet" value="/mobiledata"/>
42 41
    <config name="loading_page" value="Res/local/welcome.html"/>

+ 14 - 410
SuperMenu/SuperMenu.xcodeproj/project.pbxproj

@ -54,142 +54,6 @@
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
193 57
/* Begin PBXCopyFilesBuildPhase section */
194 58
		EA45A5B21E0777C0001275C9 /* Embed Frameworks */ = {
195 59
			isa = PBXCopyFilesBuildPhase;
@ -213,14 +77,6 @@
213 77
/* End PBXCopyFilesBuildPhase section */
214 78
215 79
/* 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>"; };
224 80
		0429A26E21805C34003CEE83 /* WadeMobileBundle.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = WadeMobileBundle.bundle; path = ../IpuCommon/Frameworks/WadeMobileBundle.bundle; sourceTree = "<group>"; };
225 81
		0429A29921805EA8003CEE83 /* Res */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Res; sourceTree = "<group>"; };
226 82
		045BF82B218AEDD800235C80 /* WadeMobileFunc.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WadeMobileFunc.framework; path = ../IpuCommon/Frameworks/WadeMobileFunc.framework; sourceTree = "<group>"; };
@ -295,81 +151,6 @@
295 151
/* End PBXFrameworksBuildPhase section */
296 152
297 153
/* 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
		};
373 154
		0A780E601EE8EAB0004AE072 /* Framework */ = {
374 155
			isa = PBXGroup;
375 156
			children = (
@ -425,14 +206,6 @@
425 206
		EA45A5831E077735001275C9 = {
426 207
			isa = PBXGroup;
427 208
			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 */,
436 209
				0429A29921805EA8003CEE83 /* Res */,
437 210
				0A780E601EE8EAB0004AE072 /* Framework */,
438 211
				EA45A58E1E077735001275C9 /* SuperMenu */,
@ -525,7 +298,7 @@
525 298
					EA45A58B1E077735001275C9 = {
526 299
						CreatedOnToolsVersion = 7.2;
527 300
						DevelopmentTeam = AKH3YVA3CT;
528
						ProvisioningStyle = Manual;
301
						ProvisioningStyle = Automatic;
529 302
						SystemCapabilities = {
530 303
							com.apple.BackgroundModes = {
531 304
								enabled = 1;
@ -542,46 +315,13 @@
542 315
			developmentRegion = English;
543 316
			hasScannedForEncodings = 0;
544 317
			knownRegions = (
318
				English,
545 319
				en,
546 320
				Base,
547 321
			);
548 322
			mainGroup = EA45A5831E077735001275C9;
549 323
			productRefGroup = EA45A58D1E077735001275C9 /* Products */;
550 324
			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
			);
585 325
			projectRoot = "";
586 326
			targets = (
587 327
				EA45A58B1E077735001275C9 /* SuperMenu */,
@ -589,142 +329,6 @@
589 329
		};
590 330
/* End PBXProject section */
591 331
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
728 332
/* Begin PBXResourcesBuildPhase section */
729 333
		EA45A58A1E077735001275C9 /* Resources */ = {
730 334
			isa = PBXResourcesBuildPhase;
@ -877,10 +481,10 @@
877 481
			buildSettings = {
878 482
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
879 483
				CODE_SIGN_ENTITLEMENTS = SuperMenu/SuperMenu.entitlements;
880
				CODE_SIGN_IDENTITY = "iPhone Developer";
881
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
882
				CODE_SIGN_STYLE = Manual;
883
				DEVELOPMENT_TEAM = AKH3YVA3CT;
484
				CODE_SIGN_IDENTITY = "Apple Development";
485
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
486
				CODE_SIGN_STYLE = Automatic;
487
				DEVELOPMENT_TEAM = "";
884 488
				ENABLE_BITCODE = NO;
885 489
				FRAMEWORK_SEARCH_PATHS = (
886 490
					"$(PROJECT_DIR)/../IpuCommon/Frameworks",
@ -892,8 +496,8 @@
892 496
				OTHER_LDFLAGS = "-ObjC";
893 497
				PRODUCT_BUNDLE_IDENTIFIER = com.ai.prd.ipu.superapp;
894 498
				PRODUCT_NAME = "$(TARGET_NAME)";
895
				PROVISIONING_PROFILE = "1fe1b48f-fa7c-430c-9199-e359a0f8a9a4";
896
				PROVISIONING_PROFILE_SPECIFIER = ipu_superapp_dev;
499
				PROVISIONING_PROFILE = "";
500
				PROVISIONING_PROFILE_SPECIFIER = "";
897 501
			};
898 502
			name = Debug;
899 503
		};
@ -902,10 +506,10 @@
902 506
			buildSettings = {
903 507
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
904 508
				CODE_SIGN_ENTITLEMENTS = SuperMenu/SuperMenu.entitlements;
905
				CODE_SIGN_IDENTITY = "iPhone Distribution";
906
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
907
				CODE_SIGN_STYLE = Manual;
908
				DEVELOPMENT_TEAM = AKH3YVA3CT;
509
				CODE_SIGN_IDENTITY = "Apple Development";
510
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "Apple Development";
511
				CODE_SIGN_STYLE = Automatic;
512
				DEVELOPMENT_TEAM = "";
909 513
				ENABLE_BITCODE = NO;
910 514
				FRAMEWORK_SEARCH_PATHS = (
911 515
					"$(PROJECT_DIR)/../IpuCommon/Frameworks",
@ -917,8 +521,8 @@
917 521
				OTHER_LDFLAGS = "-ObjC";
918 522
				PRODUCT_BUNDLE_IDENTIFIER = com.ai.prd.ipu.superapp;
919 523
				PRODUCT_NAME = "$(TARGET_NAME)";
920
				PROVISIONING_PROFILE = "130e2eb8-1d5b-47ce-b064-2d460d6e024e";
921
				PROVISIONING_PROFILE_SPECIFIER = ipu_superapp_dis;
524
				PROVISIONING_PROFILE = "";
525
				PROVISIONING_PROFILE_SPECIFIER = "";
922 526
			};
923 527
			name = Release;
924 528
		};

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

@ -12,7 +12,7 @@
12 12
		<key>SuperMenu.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>6</integer>
15
			<integer>9</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

BIN
SuperMenu/SuperMenu.xcworkspace/xcuserdata/benny.xcuserdatad/UserInterfaceState.xcuserstate


+ 3 - 1
SuperMenu/SuperMenu/multiple/AppManagePlugin.m

@ -99,6 +99,7 @@
99 99
    //4.打开页面
100 100
    rootVC = (ViewController *)self.getViewController;
101 101
    IpuTemplateSubController *vc = [[IpuTemplateSubController alloc] init];
102
    vc.modalPresentationStyle = UIModalPresentationFullScreen;
102 103
    [rootVC presentViewController:vc animated:YES completion:^{
103 104
        
104 105
    }];
@ -171,6 +172,7 @@
171 172
        
172 173
        vc.plugin = self;
173 174
        UINavigationController *nc = [[UINavigationController alloc] initWithRootViewController:vc];
175
        nc.modalPresentationStyle = UIModalPresentationFullScreen;
174 176
        [[self getViewController] presentViewController:nc animated:YES completion:^{
175 177
            
176 178
        }];
@ -408,7 +410,7 @@
408 410
}
409 411
410 412
- (void)initNfc:(NSArray *)args {
411
    IpuAlertView *alert = [[IpuAlertView alloc]initWithTitle:@"提示" message:@"IOS暂不提供NFC功能,请等待!" block:^(IpuAlertView *alertView, BOOL isCancel, NSInteger buttonIndex) {
413
    IpuAlertView *alert = [[IpuAlertView alloc]initWithTitle:@"提示" message:@"iOS暂不提供NFC功能,请等待!" block:^(IpuAlertView *alertView, BOOL isCancel, NSInteger buttonIndex) {
412 414
        //3.1.退出应用
413 415
        if (buttonIndex == 0) {
414 416
            

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

@ -7,21 +7,21 @@
7 7
		<key>WadeMobileFunc.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>4</integer>
10
			<integer>2</integer>
11 11
		</dict>
12 12
		<key>WadeMobileFunc4Appstore.xcscheme</key>
13 13
		<dict>
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>7</integer>
17
			<integer>4</integer>
18 18
		</dict>
19 19
		<key>WadeMobileFuncAggregate.xcscheme</key>
20 20
		<dict>
21 21
			<key>isShown</key>
22 22
			<false/>
23 23
			<key>orderHint</key>
24
			<integer>6</integer>
24
			<integer>3</integer>
25 25
		</dict>
26 26
	</dict>
27 27
	<key>SuppressBuildableAutocreation</key>

+ 1 - 1
display-center/ReactNative/node_modules/react-native-camera/ios/RNCamera.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>RNCamera.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>28</integer>
15
			<integer>25</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/ART/ART.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -14,7 +14,7 @@
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>23</integer>
17
			<integer>22</integer>
18 18
		</dict>
19 19
		<key>ART.xcscheme</key>
20 20
		<dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -14,7 +14,7 @@
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>22</integer>
17
			<integer>21</integer>
18 18
		</dict>
19 19
		<key>RCTBlob.xcscheme</key>
20 20
		<dict>
@ -24,7 +24,7 @@
24 24
		<key>RCTBlob.xcscheme_^#shared#^_</key>
25 25
		<dict>
26 26
			<key>orderHint</key>
27
			<integer>30</integer>
27
			<integer>28</integer>
28 28
		</dict>
29 29
	</dict>
30 30
	<key>SuppressBuildableAutocreation</key>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/CameraRoll/RCTCameraRoll.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>RCTCameraRoll.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>31</integer>
15
			<integer>30</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>RCTGeolocation.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>32</integer>
15
			<integer>31</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/Image/RCTImage.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -14,7 +14,7 @@
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>21</integer>
17
			<integer>20</integer>
18 18
		</dict>
19 19
		<key>RCTImage.xcscheme</key>
20 20
		<dict>
@ -24,7 +24,7 @@
24 24
		<key>RCTImage.xcscheme_^#shared#^_</key>
25 25
		<dict>
26 26
			<key>orderHint</key>
27
			<integer>33</integer>
27
			<integer>32</integer>
28 28
		</dict>
29 29
	</dict>
30 30
	<key>SuppressBuildableAutocreation</key>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -14,7 +14,7 @@
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>20</integer>
17
			<integer>19</integer>
18 18
		</dict>
19 19
		<key>RCTLinking.xcscheme</key>
20 20
		<dict>
@ -24,7 +24,7 @@
24 24
		<key>RCTLinking.xcscheme_^#shared#^_</key>
25 25
		<dict>
26 26
			<key>orderHint</key>
27
			<integer>34</integer>
27
			<integer>33</integer>
28 28
		</dict>
29 29
	</dict>
30 30
	<key>SuppressBuildableAutocreation</key>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -14,7 +14,7 @@
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>19</integer>
17
			<integer>18</integer>
18 18
		</dict>
19 19
		<key>RCTAnimation.xcscheme</key>
20 20
		<dict>
@ -24,7 +24,7 @@
24 24
		<key>RCTAnimation.xcscheme_^#shared#^_</key>
25 25
		<dict>
26 26
			<key>orderHint</key>
27
			<integer>42</integer>
27
			<integer>41</integer>
28 28
		</dict>
29 29
	</dict>
30 30
	<key>SuppressBuildableAutocreation</key>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -24,7 +24,7 @@
24 24
		<key>RCTNetwork.xcscheme_^#shared#^_</key>
25 25
		<dict>
26 26
			<key>orderHint</key>
27
			<integer>43</integer>
27
			<integer>42</integer>
28 28
		</dict>
29 29
	</dict>
30 30
	<key>SuppressBuildableAutocreation</key>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -14,7 +14,7 @@
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>18</integer>
17
			<integer>17</integer>
18 18
		</dict>
19 19
		<key>RCTSettings.xcscheme</key>
20 20
		<dict>
@ -24,7 +24,7 @@
24 24
		<key>RCTSettings.xcscheme_^#shared#^_</key>
25 25
		<dict>
26 26
			<key>orderHint</key>
27
			<integer>44</integer>
27
			<integer>43</integer>
28 28
		</dict>
29 29
	</dict>
30 30
	<key>SuppressBuildableAutocreation</key>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/Text/RCTText.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -14,7 +14,7 @@
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>16</integer>
17
			<integer>15</integer>
18 18
		</dict>
19 19
		<key>RCTText.xcscheme</key>
20 20
		<dict>
@ -24,7 +24,7 @@
24 24
		<key>RCTText.xcscheme_^#shared#^_</key>
25 25
		<dict>
26 26
			<key>orderHint</key>
27
			<integer>17</integer>
27
			<integer>16</integer>
28 28
		</dict>
29 29
	</dict>
30 30
	<key>SuppressBuildableAutocreation</key>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -12,7 +12,7 @@
12 12
		<key>RCTVibration.xcscheme_^#shared#^_</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>45</integer>
15
			<integer>44</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 4 - 4
display-center/ReactNative/node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -14,7 +14,7 @@
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>13</integer>
17
			<integer>12</integer>
18 18
		</dict>
19 19
		<key>RCTWebSocket.xcscheme</key>
20 20
		<dict>
@ -24,7 +24,7 @@
24 24
		<key>RCTWebSocket.xcscheme_^#shared#^_</key>
25 25
		<dict>
26 26
			<key>orderHint</key>
27
			<integer>46</integer>
27
			<integer>45</integer>
28 28
		</dict>
29 29
		<key>fishhook-tvOS.xcscheme</key>
30 30
		<dict>
@ -36,7 +36,7 @@
36 36
			<key>isShown</key>
37 37
			<false/>
38 38
			<key>orderHint</key>
39
			<integer>15</integer>
39
			<integer>14</integer>
40 40
		</dict>
41 41
		<key>fishhook.xcscheme</key>
42 42
		<dict>
@ -46,7 +46,7 @@
46 46
		<key>fishhook.xcscheme_^#shared#^_</key>
47 47
		<dict>
48 48
			<key>orderHint</key>
49
			<integer>47</integer>
49
			<integer>46</integer>
50 50
		</dict>
51 51
	</dict>
52 52
	<key>SuppressBuildableAutocreation</key>

+ 13 - 13
display-center/ReactNative/node_modules/react-native/React/React.xcodeproj/xcuserdata/benny.xcuserdatad/xcschemes/xcschememanagement.plist

@ -14,7 +14,7 @@
14 14
			<key>isShown</key>
15 15
			<false/>
16 16
			<key>orderHint</key>
17
			<integer>6</integer>
17
			<integer>5</integer>
18 18
		</dict>
19 19
		<key>React.xcscheme</key>
20 20
		<dict>
@ -24,7 +24,7 @@
24 24
		<key>React.xcscheme_^#shared#^_</key>
25 25
		<dict>
26 26
			<key>orderHint</key>
27
			<integer>5</integer>
27
			<integer>4</integer>
28 28
		</dict>
29 29
		<key>cxxreact-tvOS.xcscheme</key>
30 30
		<dict>
@ -36,7 +36,7 @@
36 36
			<key>isShown</key>
37 37
			<false/>
38 38
			<key>orderHint</key>
39
			<integer>8</integer>
39
			<integer>7</integer>
40 40
		</dict>
41 41
		<key>cxxreact.xcscheme</key>
42 42
		<dict>
@ -46,7 +46,7 @@
46 46
		<key>cxxreact.xcscheme_^#shared#^_</key>
47 47
		<dict>
48 48
			<key>orderHint</key>
49
			<integer>36</integer>
49
			<integer>35</integer>
50 50
		</dict>
51 51
		<key>double-conversion-tvOS.xcscheme</key>
52 52
		<dict>
@ -58,7 +58,7 @@
58 58
			<key>isShown</key>
59 59
			<false/>
60 60
			<key>orderHint</key>
61
			<integer>12</integer>
61
			<integer>11</integer>
62 62
		</dict>
63 63
		<key>double-conversion.xcscheme</key>
64 64
		<dict>
@ -68,7 +68,7 @@
68 68
		<key>double-conversion.xcscheme_^#shared#^_</key>
69 69
		<dict>
70 70
			<key>orderHint</key>
71
			<integer>40</integer>
71
			<integer>36</integer>
72 72
		</dict>
73 73
		<key>jschelpers-tvOS.xcscheme</key>
74 74
		<dict>
@ -80,7 +80,7 @@
80 80
			<key>isShown</key>
81 81
			<false/>
82 82
			<key>orderHint</key>
83
			<integer>9</integer>
83
			<integer>8</integer>
84 84
		</dict>
85 85
		<key>jschelpers.xcscheme</key>
86 86
		<dict>
@ -102,7 +102,7 @@
102 102
			<key>isShown</key>
103 103
			<false/>
104 104
			<key>orderHint</key>
105
			<integer>10</integer>
105
			<integer>9</integer>
106 106
		</dict>
107 107
		<key>jsinspector.xcscheme</key>
108 108
		<dict>
@ -124,7 +124,7 @@
124 124
			<key>isShown</key>
125 125
			<false/>
126 126
			<key>orderHint</key>
127
			<integer>14</integer>
127
			<integer>13</integer>
128 128
		</dict>
129 129
		<key>privatedata.xcscheme</key>
130 130
		<dict>
@ -134,7 +134,7 @@
134 134
		<key>privatedata.xcscheme_^#shared#^_</key>
135 135
		<dict>
136 136
			<key>orderHint</key>
137
			<integer>41</integer>
137
			<integer>40</integer>
138 138
		</dict>
139 139
		<key>third-party-tvOS.xcscheme</key>
140 140
		<dict>
@ -146,7 +146,7 @@
146 146
			<key>isShown</key>
147 147
			<false/>
148 148
			<key>orderHint</key>
149
			<integer>11</integer>
149
			<integer>10</integer>
150 150
		</dict>
151 151
		<key>third-party.xcscheme</key>
152 152
		<dict>
@ -168,7 +168,7 @@
168 168
			<key>isShown</key>
169 169
			<false/>
170 170
			<key>orderHint</key>
171
			<integer>7</integer>
171
			<integer>6</integer>
172 172
		</dict>
173 173
		<key>yoga.xcscheme</key>
174 174
		<dict>
@ -178,7 +178,7 @@
178 178
		<key>yoga.xcscheme_^#shared#^_</key>
179 179
		<dict>
180 180
			<key>orderHint</key>
181
			<integer>35</integer>
181
			<integer>34</integer>
182 182
		</dict>
183 183
	</dict>
184 184
	<key>SuppressBuildableAutocreation</key>

+ 1 - 0
display-center/Res/config/mobile-config.xml

@ -43,4 +43,5 @@
43 43
    <config name="download_hint"   value="false"/>
44 44
    
45 45
    <config name="WebView" value="UIWebView"/>
46
    <config name="gesture_switch" value="on"/>
46 47
</configs>

+ 0 - 3
display-center/display-center.xcworkspace/contents.xcworkspacedata

@ -5,9 +5,6 @@
5 5
      location = "group:../../iOS-Master/WadeMobile/WadeMobile.xcodeproj">
6 6
   </FileRef>
7 7
   <FileRef
8
      location = "group:../../iOS-Plugin/IpuQrCode/IpuQrCode.xcodeproj">
9
   </FileRef>
10
   <FileRef
11 8
      location = "group:display-center.xcodeproj">
12 9
   </FileRef>
13 10
</Workspace>

BIN
display-center/display-center.xcworkspace/xcuserdata/benny.xcuserdatad/UserInterfaceState.xcuserstate


+ 48 - 0
display-center/display-center.xcworkspace/xcuserdata/benny.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@ -66,5 +66,53 @@
66 66
            landmarkType = "7">
67 67
         </BreakpointContent>
68 68
      </BreakpointProxy>
69
      <BreakpointProxy
70
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
71
         <BreakpointContent
72
            uuid = "1BF0B97F-8643-4007-9FC3-8D10BF8986A2"
73
            shouldBeEnabled = "Yes"
74
            ignoreCount = "0"
75
            continueAfterRunningActions = "No"
76
            filePath = "../../iOS-Master/WadeMobile/WadeMobile/frame/WDViewController.m"
77
            startingColumnNumber = "9223372036854775807"
78
            endingColumnNumber = "9223372036854775807"
79
            startingLineNumber = "148"
80
            endingLineNumber = "148"
81
            landmarkName = "-initGestureDelegate"
82
            landmarkType = "7">
83
         </BreakpointContent>
84
      </BreakpointProxy>
85
      <BreakpointProxy
86
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
87
         <BreakpointContent
88
            uuid = "4A35E063-1703-4730-81CF-6348D9A597A6"
89
            shouldBeEnabled = "Yes"
90
            ignoreCount = "0"
91
            continueAfterRunningActions = "No"
92
            filePath = "../../iOS-Master/WadeMobile/WadeMobile/frame/template/WDTemplateMainController.m"
93
            startingColumnNumber = "9223372036854775807"
94
            endingColumnNumber = "9223372036854775807"
95
            startingLineNumber = "367"
96
            endingLineNumber = "367"
97
            landmarkName = "-shouldSlipToRight:"
98
            landmarkType = "7">
99
         </BreakpointContent>
100
      </BreakpointProxy>
101
      <BreakpointProxy
102
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
103
         <BreakpointContent
104
            uuid = "745EFEC1-A8D6-43A4-9980-186FDE0E8699"
105
            shouldBeEnabled = "Yes"
106
            ignoreCount = "0"
107
            continueAfterRunningActions = "No"
108
            filePath = "../../iOS-Master/WadeMobile/WadeMobile/frame/WDViewController.m"
109
            startingColumnNumber = "9223372036854775807"
110
            endingColumnNumber = "9223372036854775807"
111
            startingLineNumber = "328"
112
            endingLineNumber = "328"
113
            landmarkName = "-handleNavigationTransition:"
114
            landmarkType = "7">
115
         </BreakpointContent>
116
      </BreakpointProxy>
69 117
   </Breakpoints>
70 118
</Bucket>