num lines-num-old"> 5
//  Created by 秋林 on 2018/10/29.
6
//  Copyright © 2018 asiainfo. All rights reserved.
7
//
8
9
#import "IpuAuthentication.h"
10
11
#import<LocalAuthentication/LocalAuthentication.h>
12
13
@implementation IpuAuthentication
14
15
- (void)isSupportFingerprintAuthentication:(NSArray *)params {
16
    LAContext *context = [[LAContext alloc] init];
17
    
18
    NSError *error = nil;
19
    
20
    // 设备是否支持TouchId
21
    if (![context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error] || error) {
22
        [self callback:@"1"];
23
    } else {
24
        [self callback:@"0"];
25
    }
26
}
27
28
- (void)fingerprintAuthentication:(NSArray *)params {
29
    LAContext *context = [[LAContext alloc] init];
30
    
31
    NSError *error = nil;
32
    
33
    // 设备是否支持TouchId
34
    if (![context canEvaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics error:&error] || error) {
35
        [self callback:@"2"];
36
        return;
37
    }
38
    
39
    NSString *localizedFallbackTitle = @"输入密码解锁";
40
    NSString *localizedReason = @"需要验证您的touch ID";
41
    
42
    if (params.count > 0) {
43
        localizedFallbackTitle = params[0];
44
    }
45
    
46
    if (params.count > 1) {
47
        localizedReason = params[1];
48
    }
49
    
50
    context.localizedFallbackTitle = localizedFallbackTitle;
51
    
52
    // 弹窗验证
53
    __weak typeof(self) weakSelf = self;
54
    [context evaluatePolicy:LAPolicyDeviceOwnerAuthenticationWithBiometrics
55
            localizedReason:localizedReason
56
                      reply:^(BOOL success, NSError * _Nullable error) {
57
                          __strong typeof(self) strongSelf = weakSelf;
58
                          if (success) {
59
                              //
60
                              [strongSelf callback:@"0"];
61
                              return;
62
                          }
63
                          
64
                          LAError errorCode = error.code;
65
                          if (errorCode == LAErrorSystemCancel || errorCode == LAErrorUserCancel) {
66
                              // 系统取消授权、用户取消授权
67
                              [strongSelf callback:@"1"];
68
                              return;
69
                          }
70
                          
71
                          [strongSelf callback:@"2"];
72
                      }];
73
}
74
75
@end

+ 5 - 1
WadeMobileFunc/WadeMobileFunc/WDFMobileCamera.m

@ -58,7 +58,11 @@ BOOL base64;
58 58
    UIImage *image = [UIImage imageWithContentsOfFile:filePath];
59 59
    if (image) {
60 60
        NSData *data =  UIImageJPEGRepresentation(image, 1.0);
61
        NSString *base64 = [data base64Encoding];
61
        
62
        // update deprecated api:base64Encoding
63
        // edit by lql
64
        NSString *base64 = [data base64EncodedStringWithOptions:NSDataBase64Encoding64CharacterLineLength];
65
        
62 66
        return base64;
63 67
    }
64 68
    return nil;

+ 4 - 4
WadeMobileFunc/WadeMobileFunc/WDFMobileLocation.m

@ -22,7 +22,7 @@
22 22
    man = [[CLLocationManager alloc] init];
23 23
24 24
    // 如果可以利用本地服务时
25
    if ([man locationServicesEnabled]) {
25
    if ([CLLocationManager locationServicesEnabled]) {
26 26
        // 接收事件的实例
27 27
        man.delegate = self;
28 28
        // 发生事件的的最小距离间隔(缺省是不指定)
@ -45,8 +45,8 @@
45 45
    CLLocationDegrees longitude = coordinate.longitude;
46 46
    
47 47
    // 取得精度
48
    CLLocationAccuracy horizontal = newLocation.horizontalAccuracy;
49
    CLLocationAccuracy vertical = newLocation.verticalAccuracy;
48
//    CLLocationAccuracy horizontal = newLocation.horizontalAccuracy;
49
//    CLLocationAccuracy vertical = newLocation.verticalAccuracy;
50 50
    
51 51
    // 取得高度
52 52
    CLLocationDistance altitude = newLocation.altitude;
@ -59,7 +59,7 @@
59 59
    
60 60
    // 与上次测量地点的间隔距离
61 61
    if (oldLocation != nil) {
62
        CLLocationDistance d = [newLocation getDistanceFrom:oldLocation];
62
        CLLocationDistance d = [newLocation distanceFromLocation:oldLocation];
63 63
        NSLog(@"Distance:%@.", [NSString stringWithFormat:@"%f", d]);
64 64
    }
65 65
    

+ 5 - 0
WadeMobileFunc/WadeMobileFunc/WDFMobileUI.h

@ -5,8 +5,13 @@
5 5
//  Created by huangbo on 13-9-18.
6 6
//  Copyright (c) 2013年 huangbo. All rights reserved.
7 7
//
8
#ifndef SCREEN_HEIGHT
8 9
#define SCREEN_HEIGHT   ([[UIScreen mainScreen] bounds].size.height)    //屏幕高度
10
#endif
11
12
#ifndef SCREEN_WIDTH
9 13
#define SCREEN_WIDTH    ([[UIScreen mainScreen] bounds].size.width)     //屏幕宽度
14
#endif
10 15
11 16
#import <Foundation/Foundation.h>
12 17
#import <UIKit/UIKit.h>

+ 1 - 2
WadeMobileFunc/WadeMobileFunc/WDFMobileUI.m

@ -27,7 +27,6 @@
27 27
#import <WadeMobileUI/WDWindowViewController.h>
28 28
#import <WadeMobileUI/IpuDatePickerView.h>
29 29
30
31 30
#define deviceHeight ([[UIScreen mainScreen] bounds].size.height)
32 31
#define deviceWidth ([[UIScreen mainScreen] bounds].size.width)
33 32
#define currentSystemVersion [[[UIDevice currentDevice] systemVersion] floatValue]
@ -451,7 +450,7 @@
451 450
    [showview addSubview:label];
452 451
    
453 452
    CGFloat outWith = LabelSize.width + 20,outHeight = LabelSize.height + 10;
454
    CGFloat x = (SCREEN_WIDTH - outWith) / 2, y = (SCREEN_HEIGHT - LabelSize.height) * 0.9;
453
    CGFloat x = (deviceWidth - outWith) / 2, y = (deviceHeight - LabelSize.height) * 0.9;
455 454
    showview.frame = CGRectMake(x, y, outWith, outHeight);
456 455
    
457 456
    [UIView animateWithDuration:duration animations:^{

+ 4 - 1
WadeMobileFunc/WadeMobileFunc/camera/WDFCamera.m

@ -43,6 +43,9 @@
43 43
                                                        sourceType = UIImagePickerControllerSourceTypeCamera;
44 44
                                                    } else if (buttonIndex == 2) {
45 45
                                                        sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
46
                                                    } else {
47
                                                        [sheet dismissWithClickedButtonIndex:buttonIndex animated:YES];
48
                                                        return ;
46 49
                                                    }
47 50
                                                    [self takePicktureWith:sourceType quality:compression];
48 51
                                                }
@ -211,7 +214,7 @@
211 214
        NSError *error = nil;
212 215
        CMTime actualTime;
213 216
        CGImageRef image = [gen copyCGImageAtTime:time actualTime:&actualTime error:&error];
214
        UIImage *thumb = [[UIImage alloc] initWithCGImage:image];
217
//        UIImage *thumb = [[UIImage alloc] initWithCGImage:image];
215 218
        CGImageRelease(image);
216 219
    }
217 220
}

+ 1 - 1
WadeMobileFunc/WadeMobileFunc/camera/WDFImagePickerController.m

@ -37,7 +37,7 @@
37 37
- (void)imagePickerController:(UIImagePickerController *)picker
38 38
        didFinishPickingImage:(UIImage *)image
39 39
                  editingInfo:(NSDictionary *)editingInfo {
40
    [picker dismissModalViewControllerAnimated:YES];
40
    [picker dismissViewControllerAnimated:YES completion:nil];
41 41
}
42 42
43 43
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker{

+ 25 - 28
WadeMobileFunc/WadeMobileFunc/camera/custom/WDFCustomCamera.m

@ -121,7 +121,11 @@
121 121
    UIImage* image = [UIImage imageWithContentsOfFile:filePath];
122 122
    if (image) {
123 123
        NSData* data =  UIImageJPEGRepresentation(image, 1.0);
124
        NSString* base64 = [data base64Encoding];
124
        
125
        // update deprecated api:base64Encoding
126
        // edit by lql
127
        NSString *base64 = [data base64EncodedStringWithOptions:NSDataBase64Encoding64CharacterLineLength];
128
        
125 129
        return base64;
126 130
    }
127 131
    return nil;
@ -161,29 +165,6 @@
161 165
    }
162 166
    return data;
163 167
}
164
/**
165
 *  方法二:压缩图片到指定文件大小
166
 *  @param maxLength 图片NSData类型最大长度
167
 */
168
- (NSData *)compressQualityWithMaxLength:(NSInteger)maxLength {
169
    CGFloat compression = 1;
170
    NSData *data = UIImageJPEGRepresentation(self, compression);
171
    if (data.length < maxLength) return data;
172
    CGFloat max = 1;
173
    CGFloat min = 0;
174
    for (int i = 0; i < 6; ++i) {
175
        compression = (max + min) / 2;
176
        data = UIImageJPEGRepresentation(self, compression);
177
        if (data.length < maxLength * 0.9) {
178
            min = compression;
179
        } else if (data.length > maxLength) {
180
            max = compression;
181
        } else {
182
            break;
183
        }
184
    }
185
    return data;
186
}
187 168
188 169
- (CGFloat)getfileSize:(NSString *)path
189 170
{
@ -226,7 +207,15 @@
226 207
    
227 208
    CGFloat fHeight = 0.0f;
228 209
    for (NSString *sContent in arrContent) {
229
        CGSize stringSize = [sContent sizeWithFont:font constrainedToSize:CGSizeMake(size.width, size.height) lineBreakMode:NSLineBreakByWordWrapping];
210
        // update deprecated sizeWithFont: constrainedToSize: lineBreakMode:
211
        // edit by lql
212
        CGRect rect = [sContent boundingRectWithSize:CGSizeMake(size.width, size.height)
213
                                             options:NSStringDrawingUsesLineFragmentOrigin
214
                                          attributes:@{
215
                                                       NSFontAttributeName: font
216
                                                       }
217
                                             context:nil];
218
        CGSize stringSize = rect.size;
230 219
        [arrHeight addObject:[NSNumber numberWithFloat:stringSize.height]];
231 220
        fHeight += stringSize.height;
232 221
    }
@ -258,11 +247,19 @@
258 247
    for (NSString *sContent in arrContent) {
259 248
        NSNumber *numHeight = [arrHeight objectAtIndex:nIndex];
260 249
        
261
        CGSize labelSize = [sContent sizeWithFont:font constrainedToSize:CGSizeMake(size.width*0.9, [sContent length]) lineBreakMode: NSLineBreakByWordWrapping];
250
//        CGSize labelSize = [sContent sizeWithFont:font constrainedToSize:CGSizeMake(size.width*0.9, [sContent length]) lineBreakMode: NSLineBreakByWordWrapping];
262 251
263 252
        CGRect rect = CGRectMake( 0, fPosY, size.width , [numHeight floatValue]);
264
        
265
        [sContent drawInRect:rect withFont:font lineBreakMode:NSLineBreakByWordWrapping alignment:NSTextAlignmentCenter];
253
        NSMutableParagraphStyle *paragraphStyle = [[NSParagraphStyle defaultParagraphStyle] mutableCopy];
254
        paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
255
        paragraphStyle.alignment = NSTextAlignmentCenter;
256
257
        // update deprecated drawInRect: withFont: alignment:
258
        // edit by lql
259
        [sContent drawInRect:rect withAttributes:@{
260
                                                   NSFontAttributeName : font,
261
                                                   NSParagraphStyleAttributeName : paragraphStyle
262
                                                   }];
266 263
        
267 264
        fPosY += [numHeight floatValue];
268 265
        nIndex++;

+ 21 - 0
WadeMobileFunc/WadeMobileFunc/util/WDFAFNetworkingUtil.m

@ -97,5 +97,26 @@
97 97
    [dataTask resume];
98 98
}
99 99
100
+ (NSData *)downloadByPost:(NSString *)url parameters:(NSDictionary *)parameters {
101
    NSAssert(1, @"请使用其他方法");
102
    return nil;
103
}
104
105
+ (NSString *)requestByPost:(NSString*)url parameters:(NSDictionary*)parameters {
106
    NSAssert(1, @"请使用其他方法");
107
    return nil;
108
}
109
110
+ (NSString *)uploadByPost:(NSString *)url parameters:(NSDictionary *)parameters {
111
    NSAssert(1, @"请使用其他方法");
112
    return nil;
113
}
114
115
+ (void)requestByPostByAsync:(NSString *)url
116
                  parameters:(NSDictionary *)parameters
117
                    response:(IpuStringResponseBlock)ipuRespons {
118
    NSAssert(1, @"请使用其他方法");
119
}
120
100 121
@end
101 122

+ 0 - 63
display-center/ReactNative/node_modules/node-notifier/vendor/terminal-notifier.app/Contents/Info.plist

@ -1,63 +0,0 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
<plist version="1.0">
4
<dict>
5
	<key>BuildMachineOSBuild</key>
6
	<string>16E195</string>
7
	<key>CFBundleDevelopmentRegion</key>
8
	<string>en</string>
9
	<key>CFBundleExecutable</key>
10
	<string>terminal-notifier</string>
11
	<key>CFBundleIconFile</key>
12
	<string>Terminal</string>
13
	<key>CFBundleIdentifier</key>
14
	<string>nl.superalloy.oss.terminal-notifier</string>
15
	<key>CFBundleInfoDictionaryVersion</key>
16
	<string>6.0</string>
17
	<key>CFBundleName</key>
18
	<string>terminal-notifier</string>
19
	<key>CFBundlePackageType</key>
20
	<string>APPL</string>
21
	<key>CFBundleShortVersionString</key>
22
	<string>1.7.2</string>
23
	<key>CFBundleSignature</key>
24
	<string>????</string>
25
	<key>CFBundleSupportedPlatforms</key>
26
	<array>
27
		<string>MacOSX</string>
28
	</array>
29
	<key>CFBundleVersion</key>
30
	<string>17</string>
31
	<key>DTCompiler</key>
32
	<string>com.apple.compilers.llvm.clang.1_0</string>
33
	<key>DTPlatformBuild</key>
34
	<string>8B62</string>
35
	<key>DTPlatformVersion</key>
36
	<string>GM</string>
37
	<key>DTSDKBuild</key>
38
	<string>16B2649</string>
39
	<key>DTSDKName</key>
40
	<string>macosx10.12</string>
41
	<key>DTXcode</key>
42
	<string>0810</string>
43
	<key>DTXcodeBuild</key>
44
	<string>8B62</string>
45
	<key>LSMinimumSystemVersion</key>
46
	<string>10.8</string>
47
	<key>LSUIElement</key>
48
	<true/>
49
	<key>NSAppTransportSecurity</key>
50
	<dict>
51
		<key>NSAllowsArbitraryLoads</key>
52
		<true/>
53
	</dict>
54
	<key>NSHumanReadableCopyright</key>
55
	<string>Copyright © 2012-2016 Eloy Durán, Julien Blanchard. All rights reserved.</string>
56
	<key>NSMainNibFile</key>
57
	<string>MainMenu</string>
58
	<key>NSPrincipalClass</key>
59
	<string>NSApplication</string>
60
	<key>NSUserNotificationAlertStyle</key>
61
	<string>alert</string>
62
</dict>
63
</plist>

BIN
display-center/ReactNative/node_modules/node-notifier/vendor/terminal-notifier.app/Contents/MacOS/terminal-notifier


+ 0 - 1
display-center/ReactNative/node_modules/node-notifier/vendor/terminal-notifier.app/Contents/PkgInfo

@ -1 +0,0 @@
1
APPL????

BIN
display-center/ReactNative/node_modules/node-notifier/vendor/terminal-notifier.app/Contents/Resources/Terminal.icns


+ 0 - 29
display-center/ReactNative/node_modules/node-notifier/vendor/terminal-notifier.app/Contents/Resources/en.lproj/Credits.rtf

@ -1,29 +0,0 @@
1
{\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
2
{\colortbl;\red255\green255\blue255;}
3
\paperw9840\paperh8400
4
\pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural
5
6
\f0\b\fs24 \cf0 Engineering:
7
\b0 \
8
	Some people\
9
\
10
11
\b Human Interface Design:
12
\b0 \
13
	Some other people\
14
\
15
16
\b Testing:
17
\b0 \
18
	Hopefully not nobody\
19
\
20
21
\b Documentation:
22
\b0 \
23
	Whoever\
24
\
25
26
\b With special thanks to:
27
\b0 \
28
	Mom\
29
}

BIN
display-center/ReactNative/node_modules/node-notifier/vendor/terminal-notifier.app/Contents/Resources/en.lproj/InfoPlist.strings


BIN
display-center/ReactNative/node_modules/node-notifier/vendor/terminal-notifier.app/Contents/Resources/en.lproj/MainMenu.nib


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

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

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

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

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

@ -7,12 +7,12 @@
7 7
		<key>ART-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>35</integer>
10
			<integer>26</integer>
11 11
		</dict>
12 12
		<key>ART.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>34</integer>
15
			<integer>25</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 1 - 1
display-center/ReactNative/node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,7 +7,7 @@
7 7
		<key>RCTActionSheet.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>36</integer>
10
			<integer>27</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTBlob-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>33</integer>
10
			<integer>24</integer>
11 11
		</dict>
12 12
		<key>RCTBlob.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>32</integer>
15
			<integer>23</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,7 +7,7 @@
7 7
		<key>RCTCameraRoll.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>32</integer>
10
			<integer>33</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

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

@ -7,7 +7,7 @@
7 7
		<key>RCTCameraRoll.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>31</integer>
10
			<integer>22</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

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

@ -7,7 +7,7 @@
7 7
		<key>RCTGeolocation.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>33</integer>
10
			<integer>31</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

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

@ -7,7 +7,7 @@
7 7
		<key>RCTGeolocation.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>30</integer>
10
			<integer>21</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTImage-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>31</integer>
10
			<integer>32</integer>
11 11
		</dict>
12 12
		<key>RCTImage.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>27</integer>
15
			<integer>30</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTImage-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>29</integer>
10
			<integer>20</integer>
11 11
		</dict>
12 12
		<key>RCTImage.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>28</integer>
15
			<integer>19</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTLinking-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>30</integer>
10
			<integer>29</integer>
11 11
		</dict>
12 12
		<key>RCTLinking.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>29</integer>
15
			<integer>27</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTLinking-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>27</integer>
10
			<integer>18</integer>
11 11
		</dict>
12 12
		<key>RCTLinking.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>26</integer>
15
			<integer>17</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTAnimation-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>25</integer>
10
			<integer>16</integer>
11 11
		</dict>
12 12
		<key>RCTAnimation.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>24</integer>
15
			<integer>15</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTNetwork-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>23</integer>
10
			<integer>14</integer>
11 11
		</dict>
12 12
		<key>RCTNetwork.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>22</integer>
15
			<integer>13</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -12,7 +12,7 @@
12 12
		<key>RCTPushNotification.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>21</integer>
15
			<integer>22</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

+ 2 - 2
display-center/ReactNative/node_modules/react-native/Libraries/PushNotificationIOS/RCTPushNotification.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/xcschememanagement.plist

@ -7,12 +7,12 @@
7 7
		<key>RCTPushNotification-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>21</integer>
10
			<integer>12</integer>
11 11
		</dict>
12 12
		<key>RCTPushNotification.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>20</integer>
15
			<integer>11</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTSettings-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>22</integer>
10
			<integer>20</integer>
11 11
		</dict>
12 12
		<key>RCTSettings.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>20</integer>
15
			<integer>21</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTSettings-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>19</integer>
10
			<integer>10</integer>
11 11
		</dict>
12 12
		<key>RCTSettings.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>18</integer>
15
			<integer>9</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,7 +7,7 @@
7 7
		<key>RCTText-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>18</integer>
10
			<integer>19</integer>
11 11
		</dict>
12 12
		<key>RCTText.xcscheme</key>
13 13
		<dict>

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

@ -7,12 +7,12 @@
7 7
		<key>RCTText-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>17</integer>
10
			<integer>8</integer>
11 11
		</dict>
12 12
		<key>RCTText.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>16</integer>
15
			<integer>7</integer>
16 16
		</dict>
17 17
	</dict>
18 18
</dict>

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

@ -7,7 +7,7 @@
7 7
		<key>RCTVibration.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>17</integer>
10
			<integer>18</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

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

@ -7,7 +7,7 @@
7 7
		<key>RCTVibration.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>15</integer>
10
			<integer>6</integer>
11 11
		</dict>
12 12
	</dict>
13 13
</dict>

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

@ -12,12 +12,12 @@
12 12
		<key>RCTWebSocket.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>12</integer>
15
			<integer>13</integer>
16 16
		</dict>
17 17
		<key>fishhook-tvOS.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>19</integer>
20
			<integer>17</integer>
21 21
		</dict>
22 22
		<key>fishhook.xcscheme</key>
23 23
		<dict>

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

@ -7,22 +7,22 @@
7 7
		<key>RCTWebSocket-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>12</integer>
10
			<integer>3</integer>
11 11
		</dict>
12 12
		<key>RCTWebSocket.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>11</integer>
15
			<integer>2</integer>
16 16
		</dict>
17 17
		<key>fishhook-tvOS.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>14</integer>
20
			<integer>5</integer>
21 21
		</dict>
22 22
		<key>fishhook.xcscheme</key>
23 23
		<dict>
24 24
			<key>orderHint</key>
25
			<integer>13</integer>
25
			<integer>4</integer>
26 26
		</dict>
27 27
	</dict>
28 28
</dict>

+ 14 - 10
display-center/ReactNative/node_modules/react-native/React/React.xcodeproj/project.pbxproj

@ -3888,10 +3888,10 @@
3888 3888
						ProvisioningStyle = Automatic;
3889 3889
					};
3890 3890
					3D383D211EBD27B6005632C8 = {
3891
						DevelopmentTeam = V9WTTPBFK9;
3891
						DevelopmentTeam = AKH3YVA3CT;
3892 3892
					};
3893 3893
					3D383D3D1EBD27B9005632C8 = {
3894
						DevelopmentTeam = V9WTTPBFK9;
3894
						DevelopmentTeam = AKH3YVA3CT;
3895 3895
					};
3896 3896
					83CBBA2D1A601D0E00E9B192 = {
3897 3897
						CreatedOnToolsVersion = 6.1.1;
@ -4596,8 +4596,9 @@
4596 4596
				CLANG_ANALYZER_NONNULL = YES;
4597 4597
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
4598 4598
				CLANG_WARN_SUSPICIOUS_MOVES = YES;
4599
				CODE_SIGN_IDENTITY = "";
4599 4600
				DEBUG_INFORMATION_FORMAT = dwarf;
4600
				DEVELOPMENT_TEAM = V9WTTPBFK9;
4601
				DEVELOPMENT_TEAM = "";
4601 4602
				OTHER_LDFLAGS = "-ObjC";
4602 4603
				PRIVATE_HEADERS_FOLDER_PATH = "/usr/local/include/double-conversion";
4603 4604
				PRODUCT_NAME = "$(TARGET_NAME)";
@ -4612,9 +4613,10 @@
4612 4613
				CLANG_ANALYZER_NONNULL = YES;
4613 4614
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
4614 4615
				CLANG_WARN_SUSPICIOUS_MOVES = YES;
4616
				CODE_SIGN_IDENTITY = "";
4615 4617
				COPY_PHASE_STRIP = NO;
4616 4618
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
4617
				DEVELOPMENT_TEAM = V9WTTPBFK9;
4619
				DEVELOPMENT_TEAM = "";
4618 4620
				OTHER_LDFLAGS = "-ObjC";
4619 4621
				PRIVATE_HEADERS_FOLDER_PATH = "/usr/local/include/double-conversion";
4620 4622
				PRODUCT_NAME = "$(TARGET_NAME)";
@ -4630,8 +4632,9 @@
4630 4632
				CLANG_ANALYZER_NONNULL = YES;
4631 4633
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
4632 4634
				CLANG_WARN_SUSPICIOUS_MOVES = YES;
4635
				CODE_SIGN_IDENTITY = "";
4633 4636
				DEBUG_INFORMATION_FORMAT = dwarf;
4634
				DEVELOPMENT_TEAM = V9WTTPBFK9;
4637
				DEVELOPMENT_TEAM = "";
4635 4638
				OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
4636 4639
				OTHER_LDFLAGS = "-ObjC";
4637 4640
				PRODUCT_NAME = "$(TARGET_NAME)";
@ -4648,9 +4651,10 @@
4648 4651
				CLANG_ANALYZER_NONNULL = YES;
4649 4652
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
4650 4653
				CLANG_WARN_SUSPICIOUS_MOVES = YES;
4654
				CODE_SIGN_IDENTITY = "";
4651 4655
				COPY_PHASE_STRIP = NO;
4652 4656
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
4653
				DEVELOPMENT_TEAM = V9WTTPBFK9;
4657
				DEVELOPMENT_TEAM = "";
4654 4658
				OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
4655 4659
				OTHER_LDFLAGS = "-ObjC";
4656 4660
				PRODUCT_NAME = "$(TARGET_NAME)";
@ -4706,7 +4710,7 @@
4706 4710
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
4707 4711
				CLANG_WARN_SUSPICIOUS_MOVES = YES;
4708 4712
				DEBUG_INFORMATION_FORMAT = dwarf;
4709
				DEVELOPMENT_TEAM = V9WTTPBFK9;
4713
				DEVELOPMENT_TEAM = AKH3YVA3CT;
4710 4714
				OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
4711 4715
				OTHER_LDFLAGS = "-ObjC";
4712 4716
				PRODUCT_NAME = "third-party";
@ -4726,7 +4730,7 @@
4726 4730
				CLANG_WARN_SUSPICIOUS_MOVES = YES;
4727 4731
				COPY_PHASE_STRIP = NO;
4728 4732
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
4729
				DEVELOPMENT_TEAM = V9WTTPBFK9;
4733
				DEVELOPMENT_TEAM = AKH3YVA3CT;
4730 4734
				OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
4731 4735
				OTHER_LDFLAGS = "-ObjC";
4732 4736
				PRODUCT_NAME = "third-party";
@ -4744,7 +4748,7 @@
4744 4748
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
4745 4749
				CLANG_WARN_SUSPICIOUS_MOVES = YES;
4746 4750
				DEBUG_INFORMATION_FORMAT = dwarf;
4747
				DEVELOPMENT_TEAM = V9WTTPBFK9;
4751
				DEVELOPMENT_TEAM = AKH3YVA3CT;
4748 4752
				OTHER_LDFLAGS = "-ObjC";
4749 4753
				PRIVATE_HEADERS_FOLDER_PATH = "/usr/local/include/double-conversion";
4750 4754
				PRODUCT_NAME = "double-conversion";
@ -4762,7 +4766,7 @@
4762 4766
				CLANG_WARN_SUSPICIOUS_MOVES = YES;
4763 4767
				COPY_PHASE_STRIP = NO;
4764 4768
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
4765
				DEVELOPMENT_TEAM = V9WTTPBFK9;
4769
				DEVELOPMENT_TEAM = AKH3YVA3CT;
4766 4770
				OTHER_LDFLAGS = "-ObjC";
4767 4771
				PRIVATE_HEADERS_FOLDER_PATH = "/usr/local/include/double-conversion";
4768 4772
				PRODUCT_NAME = "double-conversion";

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

@ -7,7 +7,7 @@
7 7
		<key>React-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>37</integer>
10
			<integer>41</integer>
11 11
		</dict>
12 12
		<key>React.xcscheme</key>
13 13
		<dict>
@ -47,12 +47,12 @@
47 47
		<key>jsinspector-tvOS.xcscheme</key>
48 48
		<dict>
49 49
			<key>orderHint</key>
50
			<integer>48</integer>
50
			<integer>49</integer>
51 51
		</dict>
52 52
		<key>jsinspector.xcscheme</key>
53 53
		<dict>
54 54
			<key>orderHint</key>
55
			<integer>44</integer>
55
			<integer>48</integer>
56 56
		</dict>
57 57
		<key>privatedata-tvOS.xcscheme</key>
58 58
		<dict>
@ -72,17 +72,17 @@
72 72
		<key>third-party.xcscheme</key>
73 73
		<dict>
74 74
			<key>orderHint</key>
75
			<integer>49</integer>
75
			<integer>44</integer>
76 76
		</dict>
77 77
		<key>yoga-tvOS.xcscheme</key>
78 78
		<dict>
79 79
			<key>orderHint</key>
80
			<integer>42</integer>
80
			<integer>37</integer>
81 81
		</dict>
82 82
		<key>yoga.xcscheme</key>
83 83
		<dict>
84 84
			<key>orderHint</key>
85
			<integer>41</integer>
85
			<integer>42</integer>
86 86
		</dict>
87 87
	</dict>
88 88
</dict>

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

@ -7,82 +7,82 @@
7 7
		<key>React-tvOS.xcscheme</key>
8 8
		<dict>
9 9
			<key>orderHint</key>
10
			<integer>38</integer>
10
			<integer>29</integer>
11 11
		</dict>
12 12
		<key>React.xcscheme</key>
13 13
		<dict>
14 14
			<key>orderHint</key>
15
			<integer>37</integer>
15
			<integer>28</integer>
16 16
		</dict>
17 17
		<key>cxxreact-tvOS.xcscheme</key>
18 18
		<dict>
19 19
			<key>orderHint</key>
20
			<integer>42</integer>
20
			<integer>33</integer>
21 21
		</dict>
22 22
		<key>cxxreact.xcscheme</key>
23 23
		<dict>
24 24
			<key>orderHint</key>
25
			<integer>41</integer>
25
			<integer>32</integer>
26 26
		</dict>
27 27
		<key>double-conversion-tvOS.xcscheme</key>
28 28
		<dict>
29 29
			<key>orderHint</key>
30
			<integer>50</integer>
30
			<integer>41</integer>
31 31
		</dict>
32 32
		<key>double-conversion.xcscheme</key>
33 33
		<dict>
34 34
			<key>orderHint</key>
35
			<integer>49</integer>
35
			<integer>40</integer>
36 36
		</dict>
37 37
		<key>jschelpers-tvOS.xcscheme</key>
38 38
		<dict>
39 39
			<key>orderHint</key>
40
			<integer>44</integer>
40
			<integer>35</integer>
41 41
		</dict>
42 42
		<key>jschelpers.xcscheme</key>
43 43
		<dict>
44 44
			<key>orderHint</key>
45
			<integer>43</integer>
45
			<integer>34</integer>
46 46
		</dict>
47 47
		<key>jsinspector-tvOS.xcscheme</key>
48 48
		<dict>
49 49
			<key>orderHint</key>
50
			<integer>46</integer>
50
			<integer>37</integer>
51 51
		</dict>
52 52
		<key>jsinspector.xcscheme</key>
53 53
		<dict>
54 54
			<key>orderHint</key>
55
			<integer>45</integer>
55
			<integer>36</integer>
56 56
		</dict>
57 57
		<key>privatedata-tvOS.xcscheme</key>
58 58
		<dict>
59 59
			<key>orderHint</key>
60
			<integer>52</integer>
60
			<integer>43</integer>
61 61
		</dict>
62 62
		<key>privatedata.xcscheme</key>
63 63
		<dict>
64 64
			<key>orderHint</key>
65
			<integer>51</integer>
65
			<integer>42</integer>
66 66
		</dict>
67 67
		<key>third-party-tvOS.xcscheme</key>
68 68
		<dict>
69 69
			<key>orderHint</key>
70
			<integer>48</integer>
70
			<integer>39</integer>
71 71
		</dict>
72 72
		<key>third-party.xcscheme</key>
73 73
		<dict>
74 74
			<key>orderHint</key>
75
			<integer>47</integer>
75
			<integer>38</integer>
76 76
		</dict>
77 77
		<key>yoga-tvOS.xcscheme</key>
78 78
		<dict>
79 79
			<key>orderHint</key>
80
			<integer>40</integer>
80
			<integer>31</integer>
81 81
		</dict>
82 82
		<key>yoga.xcscheme</key>
83 83
		<dict>
84 84
			<key>orderHint</key>
85
			<integer>39</integer>
85
			<integer>30</integer>
86 86
		</dict>
87 87
	</dict>
88 88
</dict>

+ 5 - 5
display-center/Res/config/mobile-config.xml

@ -5,16 +5,16 @@
5 5
<!--    <config name="res_host" value="http://192.168.31.239:8080/res"/>-->
6 6
<!--    <config name="request_path" value="/show"/>-->
7 7
8
    <config name="request_host" value="http://172.20.10.4:8080"/>
9
    <config name="request_path" value="/show"/>
8
<!--    <config name="request_host" value="http://172.20.10.4:8080"/>-->
9
<!--    <config name="request_path" value="/show"/>-->
10 10
    
11 11
<!--    <config name="request_host" value="http://192.168.253.10:8080"/>-->
12 12
<!--    <config name="request_path" value="/show"/>-->
13
    
14 13
15
<!--    <config name="request_host" value="http://www.aiipu.com:8083"/>-->
14
15
    <config name="request_host" value="http://www.aiipu.com:8083"/>
16 16
<!--    <config name="res_host" value="http://121.42.183.206:8083/res"/>-->
17
<!--    <config name="request_path" value="/show"/>-->
17
    <config name="request_path" value="/show"/>
18 18
19 19
    <config name="request_servlet" value="/mobiledata"/>
20 20
    <config name="loading_page" value="Res/local/welcome.html"/>

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

@ -79,48 +79,6 @@
79 79
/* End PBXBuildFile section */
80 80
81 81
/* Begin PBXContainerItemProxy section */
82
		0429A2E221806C51003CEE83 /* PBXContainerItemProxy */ = {
83
			isa = PBXContainerItemProxy;
84
			containerPortal = 0429A2AE21806C51003CEE83 /* WadeMobile.xcodeproj */;
85
			proxyType = 2;
86
			remoteGlobalIDString = 614A1CD61B2142130099793B;
87
			remoteInfo = WadeMobile;
88
		};
89
		0429A2E421806C51003CEE83 /* PBXContainerItemProxy */ = {
90
			isa = PBXContainerItemProxy;
91
			containerPortal = 0429A2AE21806C51003CEE83 /* WadeMobile.xcodeproj */;
92
			proxyType = 2;
93
			remoteGlobalIDString = 614A1CE11B2142130099793B;
94
			remoteInfo = WadeMobileTests;
95
		};
96
		0429A2E621806C51003CEE83 /* PBXContainerItemProxy */ = {
97
			isa = PBXContainerItemProxy;
98
			containerPortal = 0429A2AE21806C51003CEE83 /* WadeMobile.xcodeproj */;
99
			proxyType = 2;
100
			remoteGlobalIDString = E2D93A741B89BA2800D1DE7C;
101
			remoteInfo = WadeMobileBundle;
102
		};
103
		0429A2E821806C51003CEE83 /* PBXContainerItemProxy */ = {
104
			isa = PBXContainerItemProxy;
105
			containerPortal = 0429A2AE21806C51003CEE83 /* WadeMobile.xcodeproj */;
106
			proxyType = 2;
107
			remoteGlobalIDString = 0A791C221FD102C0003CD586;
108
			remoteInfo = WadeMobileTestUnit;
109
		};
110
		0429A3CD218091DD003CEE83 /* PBXContainerItemProxy */ = {
111
			isa = PBXContainerItemProxy;
112
			containerPortal = 0429A395218091DD003CEE83 /* WadeMobileFunc.xcodeproj */;
113
			proxyType = 2;
114
			remoteGlobalIDString = E2DE1AD41B42DD9500762141;
115
			remoteInfo = WadeMobileFunc;
116
		};
117
		0429A3CF218091DD003CEE83 /* PBXContainerItemProxy */ = {
118
			isa = PBXContainerItemProxy;
119
			containerPortal = 0429A395218091DD003CEE83 /* WadeMobileFunc.xcodeproj */;
120
			proxyType = 2;
121
			remoteGlobalIDString = 0AE1E0841C7EE95900FCCD24;
122
			remoteInfo = WadeMobileFuncTests;
123
		};
124 82
		B2E8BDCF21759C5900A06A13 /* PBXContainerItemProxy */ = {
125 83
			isa = PBXContainerItemProxy;
126 84
			containerPortal = B2E8BDBC21759C5900A06A13 /* React.xcodeproj */;
@ -451,8 +409,6 @@
451 409
/* Begin PBXFileReference section */
452 410
		0429A206218046E2003CEE83 /* WadeMobileFuncBundle.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = WadeMobileFuncBundle.bundle; path = ../IpuCommon/Frameworks/WadeMobileFuncBundle.bundle; sourceTree = "<group>"; };
453 411
		0429A2332180484E003CEE83 /* fontawesome-webfont.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "fontawesome-webfont.ttf"; path = "../IpuCommon/Frameworks/fontawesome-webfont.ttf"; sourceTree = "<group>"; };
454
		0429A2AE21806C51003CEE83 /* WadeMobile.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobile.xcodeproj; path = ../../ios/WadeMobile/WadeMobile.xcodeproj; sourceTree = "<group>"; };
455
		0429A395218091DD003CEE83 /* WadeMobileFunc.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = WadeMobileFunc.xcodeproj; path = ../WadeMobileFunc/WadeMobileFunc.xcodeproj; sourceTree = "<group>"; };
456 412
		0460E86220AA9C1300CCFDA4 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; };
457 413
		B23FB9EB2170593A00027A4C /* WadeMobile.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WadeMobile.framework; path = ../IpuCommon/Frameworks/WadeMobile.framework; sourceTree = "<group>"; };
458 414
		B247A76B20E0D33A00117A38 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
@ -572,26 +528,6 @@
572 528
/* End PBXFrameworksBuildPhase section */
573 529
574 530
/* Begin PBXGroup section */
575
		0429A2AF21806C51003CEE83 /* Products */ = {
576
			isa = PBXGroup;
577
			children = (
578
				0429A2E321806C51003CEE83 /* WadeMobile.framework */,
579
				0429A2E521806C51003CEE83 /* WadeMobileTests.xctest */,
580
				0429A2E721806C51003CEE83 /* WadeMobileBundle.bundle */,
581
				0429A2E921806C51003CEE83 /* WadeMobileTestUnit.xctest */,
582
			);
583
			name = Products;
584
			sourceTree = "<group>";
585
		};
586
		0429A396218091DD003CEE83 /* Products */ = {
587
			isa = PBXGroup;
588
			children = (
589
				0429A3CE218091DD003CEE83 /* WadeMobileFunc.framework */,
590
				0429A3D0218091DD003CEE83 /* WadeMobileFuncTests.xctest */,
591
			);
592
			name = Products;
593
			sourceTree = "<group>";
594
		};
595 531
		0460E86120AA9C1300CCFDA4 /* Frameworks */ = {
596 532
			isa = PBXGroup;
597 533
			children = (
@ -818,8 +754,6 @@
818 754
		EA8712331ECD8B580045E19A = {
819 755
			isa = PBXGroup;
820 756
			children = (
821
				0429A395218091DD003CEE83 /* WadeMobileFunc.xcodeproj */,
822
				0429A2AE21806C51003CEE83 /* WadeMobile.xcodeproj */,
823 757
				B2E8BECF2176C2A600A06A13 /* AMap.bundle */,
824 758
				B2E8BE872175BAF300A06A13 /* IpuMapBundle.bundle */,
825 759
				B2E8BE892175BAF300A06A13 /* IpuQrCodeBundle.bundle */,
@ -995,14 +929,6 @@
995 929
					ProductGroup = B2E8BED82176D14700A06A13 /* Products */;
996 930
					ProjectRef = B2E8BED72176D14700A06A13 /* RNCamera.xcodeproj */;
997 931
				},
998
				{
999
					ProductGroup = 0429A2AF21806C51003CEE83 /* Products */;
1000
					ProjectRef = 0429A2AE21806C51003CEE83 /* WadeMobile.xcodeproj */;
1001
				},
1002
				{
1003
					ProductGroup = 0429A396218091DD003CEE83 /* Products */;
1004
					ProjectRef = 0429A395218091DD003CEE83 /* WadeMobileFunc.xcodeproj */;
1005
				},
1006 932
			);
1007 933
			projectRoot = "";
1008 934
			targets = (
@ -1012,48 +938,6 @@
1012 938
/* End PBXProject section */
1013 939
1014 940
/* Begin PBXReferenceProxy section */
1015
		0429A2E321806C51003CEE83 /* WadeMobile.framework */ = {
1016
			isa = PBXReferenceProxy;
1017
			fileType = wrapper.framework;
1018
			path = WadeMobile.framework;
1019
			remoteRef = 0429A2E221806C51003CEE83 /* PBXContainerItemProxy */;
1020
			sourceTree = BUILT_PRODUCTS_DIR;
1021
		};
1022
		0429A2E521806C51003CEE83 /* WadeMobileTests.xctest */ = {
1023
			isa = PBXReferenceProxy;
1024
			fileType = wrapper.cfbundle;
1025
			path = WadeMobileTests.xctest;
1026
			remoteRef = 0429A2E421806C51003CEE83 /* PBXContainerItemProxy */;
1027
			sourceTree = BUILT_PRODUCTS_DIR;
1028
		};
1029
		0429A2E721806C51003CEE83 /* WadeMobileBundle.bundle */ = {
1030
			isa = PBXReferenceProxy;
1031
			fileType = wrapper.cfbundle;
1032
			path = WadeMobileBundle.bundle;
1033
			remoteRef = 0429A2E621806C51003CEE83 /* PBXContainerItemProxy */;
1034
			sourceTree = BUILT_PRODUCTS_DIR;
1035
		};
1036
		0429A2E921806C51003CEE83 /* WadeMobileTestUnit.xctest */ = {
1037
			isa = PBXReferenceProxy;
1038
			fileType = wrapper.cfbundle;
1039
			path = WadeMobileTestUnit.xctest;
1040
			remoteRef = 0429A2E821806C51003CEE83 /* PBXContainerItemProxy */;
1041
			sourceTree = BUILT_PRODUCTS_DIR;
1042
		};
1043
		0429A3CE218091DD003CEE83 /* WadeMobileFunc.framework */ = {
1044
			isa = PBXReferenceProxy;
1045
			fileType = wrapper.framework;
1046
			path = WadeMobileFunc.framework;
1047
			remoteRef = 0429A3CD218091DD003CEE83 /* PBXContainerItemProxy */;
1048
			sourceTree = BUILT_PRODUCTS_DIR;
1049
		};
1050
		0429A3D0218091DD003CEE83 /* WadeMobileFuncTests.xctest */ = {
1051
			isa = PBXReferenceProxy;
1052
			fileType = wrapper.cfbundle;
1053
			path = WadeMobileFuncTests.xctest;
1054
			remoteRef = 0429A3CF218091DD003CEE83 /* PBXContainerItemProxy */;
1055
			sourceTree = BUILT_PRODUCTS_DIR;
1056
		};
1057 941
		B2E8BDD021759C5900A06A13 /* libReact.a */ = {
1058 942
			isa = PBXReferenceProxy;
1059 943
			fileType = archive.ar;

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


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

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

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


+ 47 - 15
display-center/display-center.xcworkspace/xcuserdata/benny.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

@ -9,13 +9,13 @@
9 9
            shouldBeEnabled = "Yes"
10 10
            ignoreCount = "0"
11 11
            continueAfterRunningActions = "No"
12
            filePath = "../../ios/IpuRN/IpuRNKit/IpuRNKit/IpuRN.m"
13
            timestampString = "561456407.560616"
12
            filePath = "../../ios/IpuRN/IpuRNKit/IpuRNKit/WDRNPlugin.m"
13
            timestampString = "561540760.880749"
14 14
            startingColumnNumber = "9223372036854775807"
15 15
            endingColumnNumber = "9223372036854775807"
16
            startingLineNumber = "53"
17
            endingLineNumber = "53"
18
            landmarkName = "-execute:params:callback:"
16
            startingLineNumber = "20"
17
            endingLineNumber = "20"
18
            landmarkName = "-openRN:"
19 19
            landmarkType = "7">
20 20
         </BreakpointContent>
21 21
      </BreakpointProxy>
@ -25,13 +25,13 @@
25 25
            shouldBeEnabled = "Yes"
26 26
            ignoreCount = "0"
27 27
            continueAfterRunningActions = "No"
28
            filePath = "../../ios/IpuRN/IpuRNKit/IpuRNKit/WDRNPlugin.m"
29
            timestampString = "561540760.880749"
28
            filePath = "../../ios/WadeMobile/WadeMobile/frame/WDNetMainController.m"
29
            timestampString = "561864366.563774"
30 30
            startingColumnNumber = "9223372036854775807"
31 31
            endingColumnNumber = "9223372036854775807"
32
            startingLineNumber = "20"
33
            endingLineNumber = "20"
34
            landmarkName = "-openRN:"
32
            startingLineNumber = "170"
33
            endingLineNumber = "170"
34
            landmarkName = "-createNewWebView"
35 35
            landmarkType = "7">
36 36
         </BreakpointContent>
37 37
      </BreakpointProxy>
@ -41,13 +41,45 @@
41 41
            shouldBeEnabled = "Yes"
42 42
            ignoreCount = "0"
43 43
            continueAfterRunningActions = "No"
44
            filePath = "../../ios/WadeMobile/WadeMobile/frame/WDNetMainController.m"
45
            timestampString = "561864366.563774"
44
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/WDTemplateMainController.m"
45
            timestampString = "562131467.494673"
46 46
            startingColumnNumber = "9223372036854775807"
47 47
            endingColumnNumber = "9223372036854775807"
48
            startingLineNumber = "170"
49
            endingLineNumber = "170"
50
            landmarkName = "-createNewWebView"
48
            startingLineNumber = "155"
49
            endingLineNumber = "155"
50
            landmarkName = "-updateResources"
51
            landmarkType = "7">
52
         </BreakpointContent>
53
      </BreakpointProxy>
54
      <BreakpointProxy
55
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
56
         <BreakpointContent
57
            shouldBeEnabled = "Yes"
58
            ignoreCount = "0"
59
            continueAfterRunningActions = "No"
60
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/IpuResVersionManager.m"
61
            timestampString = "562131087.395003"
62
            startingColumnNumber = "9223372036854775807"
63
            endingColumnNumber = "9223372036854775807"
64
            startingLineNumber = "29"
65
            endingLineNumber = "29"
66
            landmarkName = "+isUpdateResourceVersion:"
67
            landmarkType = "7">
68
         </BreakpointContent>
69
      </BreakpointProxy>
70
      <BreakpointProxy
71
         BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
72
         <BreakpointContent
73
            shouldBeEnabled = "Yes"
74
            ignoreCount = "0"
75
            continueAfterRunningActions = "No"
76
            filePath = "../../ios/WadeMobile/WadeMobile/frame/template/IpuResVersionManager.m"
77
            timestampString = "562131130.804904"
78
            startingColumnNumber = "9223372036854775807"
79
            endingColumnNumber = "9223372036854775807"
80
            startingLineNumber = "50"
81
            endingLineNumber = "50"
82
            landmarkName = "+getRemoteResourceVersion"
51 83
            landmarkType = "7">
52 84
         </BreakpointContent>
53 85
      </BreakpointProxy>

+ 0 - 10
display-center/display-center/ViewController.m

@ -19,16 +19,6 @@
19 19
20 20
- (void)viewDidLoad {
21 21
    [super viewDidLoad];
22
    
23
//    self.view.backgroundColor = [UIColor whiteColor];
24
//    
25
//    RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:[NSURL URLWithString:@"http://192.168.31.175:8081/index.bundle?platform=ios&dev=true"]
26
//                                                        moduleName:@"TestNavigator"
27
//                                                 initialProperties:nil
28
//                                                     launchOptions:nil];
29
//    rootView.frame = self.view.bounds;
30
//    
31
//    [self.view addSubview:rootView];
32 22
}
33 23
34 24
@end

android-share - Nuosi Git Service

ipu的trunk版的android工程和服务端工程。

spring-expression-3.2.8.RELEASE.jar 192KB