소스 검색

remove. privacy project xcode settings

matrixbirds 5 년 전
부모
커밋
7f6ae6da07

+ 22
- 1
samples/simpleDemo/App.js 파일 보기

8
 
8
 
9
 import React, {Component} from 'react';
9
 import React, {Component} from 'react';
10
 import {
10
 import {
11
-  StyleSheet, Text, View, TouchableOpacity, TextInput
11
+  StyleSheet, Text, View, TouchableOpacity, TextInput,
12
+  PermissionsAndroid
12
 } from 'react-native';
13
 } from 'react-native';
13
 import AgoraRTCView from './components/agora';
14
 import AgoraRTCView from './components/agora';
14
 
15
 
69
     })
70
     })
70
   }
71
   }
71
 
72
 
73
+  async requestCameraAndAudioAndroidPermission() {
74
+    try {
75
+      const granted = await PermissionsAndroid.requestMultiple([
76
+        PermissionsAndroid.PERMISSIONS.CAMERA,
77
+        PermissionsAndroid.PERMISSIONS.RECORD_AUDIO,
78
+      ]);
79
+      if (granted === PermissionsAndroid.RESULTS.GRANTED) {
80
+        console.log('You can use the camera');
81
+      } else {
82
+        console.log('Camera permission denied');
83
+      }
84
+    } catch (err) {
85
+      console.warn(err);
86
+    }
87
+  }
88
+
89
+  componentWillMount () {
90
+    this.requestCameraAndAudioAndroidPermission().then(_ => {});
91
+  }
92
+
72
   render() {
93
   render() {
73
     if (this.state.showLive) {
94
     if (this.state.showLive) {
74
       console.log('channelName', this.state.channelName);
95
       console.log('channelName', this.state.channelName);

+ 3
- 3
samples/simpleDemo/ios/Podfile.lock 파일 보기

2
   - AgoraRtcEngine_iOS (2.3.3)
2
   - AgoraRtcEngine_iOS (2.3.3)
3
   - React (0.58.3):
3
   - React (0.58.3):
4
     - React/Core (= 0.58.3)
4
     - React/Core (= 0.58.3)
5
-  - react-native-agora (2.3.3-alpha.4):
5
+  - react-native-agora (2.3.3-alpha.5):
6
     - AgoraRtcEngine_iOS (= 2.3.3)
6
     - AgoraRtcEngine_iOS (= 2.3.3)
7
     - React
7
     - React
8
-    - react-native-agora/AgoraRtcCryptoLoader (= 2.3.3-alpha.4)
9
-  - react-native-agora/AgoraRtcCryptoLoader (2.3.3-alpha.4):
8
+    - react-native-agora/AgoraRtcCryptoLoader (= 2.3.3-alpha.5)
9
+  - react-native-agora/AgoraRtcCryptoLoader (2.3.3-alpha.5):
10
     - AgoraRtcEngine_iOS (= 2.3.3)
10
     - AgoraRtcEngine_iOS (= 2.3.3)
11
     - React
11
     - React
12
   - React/Core (0.58.3):
12
   - React/Core (0.58.3):

+ 68
- 64
samples/simpleDemo/ios/simpleDemo.xcodeproj/project.pbxproj 파일 보기

13
 		00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
13
 		00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
14
 		00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
14
 		00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
15
 		00E356F31AD99517003FC87E /* simpleDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* simpleDemoTests.m */; };
15
 		00E356F31AD99517003FC87E /* simpleDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* simpleDemoTests.m */; };
16
-		068EAAC85996A1A5C8217EAB /* libPods-simpleDemoTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 951159A5104BF2D9AAB23983 /* libPods-simpleDemoTests.a */; };
17
 		0842E3912206D315003875AC /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 0842E36A2206D315003875AC /* libc++.tbd */; };
16
 		0842E3912206D315003875AC /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 0842E36A2206D315003875AC /* libc++.tbd */; };
18
 		0842E3932206D31B003875AC /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 0842E3922206D31B003875AC /* libresolv.tbd */; };
17
 		0842E3932206D31B003875AC /* libresolv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 0842E3922206D31B003875AC /* libresolv.tbd */; };
19
 		0842E3952206D320003875AC /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0842E3942206D320003875AC /* AVFoundation.framework */; };
18
 		0842E3952206D320003875AC /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0842E3942206D320003875AC /* AVFoundation.framework */; };
46
 		2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
45
 		2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
47
 		2DCD954D1E0B4F2C00145EB5 /* simpleDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* simpleDemoTests.m */; };
46
 		2DCD954D1E0B4F2C00145EB5 /* simpleDemoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* simpleDemoTests.m */; };
48
 		2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
47
 		2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
49
-		3752A059FBE8E09075DA4AE1 /* libPods-simpleDemo-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 370F79B8FF06A30AC0F9C3B5 /* libPods-simpleDemo-tvOS.a */; };
50
-		6793190DE86DEFCF49576B2B /* libPods-simpleDemo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C46FE5A2E9627977A3B13E9 /* libPods-simpleDemo.a */; };
48
+		31CCB388CDCB8EFDCD2CE281 /* libPods-simpleDemo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8529A443EE6A2665892F0925 /* libPods-simpleDemo.a */; };
49
+		63B7EEC0B95B266706601836 /* libPods-simpleDemoTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2A797948A44343327FDA03A9 /* libPods-simpleDemoTests.a */; };
51
 		832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
50
 		832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
52
 		ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
51
 		ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
52
+		C778F7B0E7B90C9535781C21 /* libPods-simpleDemo-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FC142B99FE3A39A7AB6DCD8E /* libPods-simpleDemo-tvOSTests.a */; };
53
+		E62C7ECC7700FF0C6DD17185 /* libPods-simpleDemo-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CF4A055EB69C5097DE8CA08F /* libPods-simpleDemo-tvOS.a */; };
53
 		ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED297162215061F000B7C4FE /* JavaScriptCore.framework */; };
54
 		ED297163215061F000B7C4FE /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED297162215061F000B7C4FE /* JavaScriptCore.framework */; };
54
-		F36C97402B4845BDA6A2844C /* libPods-simpleDemo-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F05F2972B345118AE7DEBA00 /* libPods-simpleDemo-tvOSTests.a */; };
55
 /* End PBXBuildFile section */
55
 /* End PBXBuildFile section */
56
 
56
 
57
 /* Begin PBXContainerItemProxy section */
57
 /* Begin PBXContainerItemProxy section */
347
 		00E356EE1AD99517003FC87E /* simpleDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = simpleDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
347
 		00E356EE1AD99517003FC87E /* simpleDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = simpleDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
348
 		00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
348
 		00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
349
 		00E356F21AD99517003FC87E /* simpleDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = simpleDemoTests.m; sourceTree = "<group>"; };
349
 		00E356F21AD99517003FC87E /* simpleDemoTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = simpleDemoTests.m; sourceTree = "<group>"; };
350
-		03E6606B86246B0AE5C5BFC5 /* Pods-simpleDemo-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo-tvOSTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo-tvOSTests/Pods-simpleDemo-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
351
 		0842E36A2206D315003875AC /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
350
 		0842E36A2206D315003875AC /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
352
 		0842E3922206D31B003875AC /* libresolv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = usr/lib/libresolv.tbd; sourceTree = SDKROOT; };
351
 		0842E3922206D31B003875AC /* libresolv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.tbd; path = usr/lib/libresolv.tbd; sourceTree = SDKROOT; };
353
 		0842E3942206D320003875AC /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
352
 		0842E3942206D320003875AC /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
360
 		0842E3A22206D360003875AC /* AgoraRtcCryptoLoader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AgoraRtcCryptoLoader.framework; path = "../node_modules/react-native-agora/ios/RCTAgora/libs/AgoraRtcCryptoLoader.framework"; sourceTree = "<group>"; };
359
 		0842E3A22206D360003875AC /* AgoraRtcCryptoLoader.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AgoraRtcCryptoLoader.framework; path = "../node_modules/react-native-agora/ios/RCTAgora/libs/AgoraRtcCryptoLoader.framework"; sourceTree = "<group>"; };
361
 		0842E3A32206D360003875AC /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = "../node_modules/react-native-agora/ios/RCTAgora/libs/libcrypto.a"; sourceTree = "<group>"; };
360
 		0842E3A32206D360003875AC /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = "../node_modules/react-native-agora/ios/RCTAgora/libs/libcrypto.a"; sourceTree = "<group>"; };
362
 		08CCEBD1221536C0003E31DF /* RCTAgora.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAgora.xcodeproj; path = "../node_modules/react-native-agora/ios/RCTAgora.xcodeproj"; sourceTree = "<group>"; };
361
 		08CCEBD1221536C0003E31DF /* RCTAgora.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAgora.xcodeproj; path = "../node_modules/react-native-agora/ios/RCTAgora.xcodeproj"; sourceTree = "<group>"; };
362
+		0C65FAA9CB239D95EDB6E00E /* Pods-simpleDemo-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo-tvOS.release.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo-tvOS/Pods-simpleDemo-tvOS.release.xcconfig"; sourceTree = "<group>"; };
363
+		122E4A520172502C9D6B7D36 /* Pods-simpleDemo-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo-tvOSTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo-tvOSTests/Pods-simpleDemo-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
363
 		139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
364
 		139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
364
 		139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
365
 		139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
365
 		13B07F961A680F5B00A75B9A /* simpleDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = simpleDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
366
 		13B07F961A680F5B00A75B9A /* simpleDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = simpleDemo.app; sourceTree = BUILT_PRODUCTS_DIR; };
370
 		13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = simpleDemo/Info.plist; sourceTree = "<group>"; };
371
 		13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = simpleDemo/Info.plist; sourceTree = "<group>"; };
371
 		13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = simpleDemo/main.m; sourceTree = "<group>"; };
372
 		13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = simpleDemo/main.m; sourceTree = "<group>"; };
372
 		146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
373
 		146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
373
-		2C28A102506C6EC8AEEADEBB /* Pods-simpleDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemoTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemoTests/Pods-simpleDemoTests.release.xcconfig"; sourceTree = "<group>"; };
374
+		1CD9D1AEC7C4C297784C698B /* Pods-simpleDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo.release.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo/Pods-simpleDemo.release.xcconfig"; sourceTree = "<group>"; };
375
+		2A797948A44343327FDA03A9 /* libPods-simpleDemoTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-simpleDemoTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
374
 		2D02E47B1E0B4A5D006451C7 /* simpleDemo-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "simpleDemo-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
376
 		2D02E47B1E0B4A5D006451C7 /* simpleDemo-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "simpleDemo-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
375
 		2D02E4901E0B4A5D006451C7 /* simpleDemo-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "simpleDemo-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
377
 		2D02E4901E0B4A5D006451C7 /* simpleDemo-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "simpleDemo-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
376
 		2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
378
 		2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
377
-		370F79B8FF06A30AC0F9C3B5 /* libPods-simpleDemo-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-simpleDemo-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
378
-		3FE905B2466BFABBAA8F09A8 /* Pods-simpleDemo-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo-tvOS.release.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo-tvOS/Pods-simpleDemo-tvOS.release.xcconfig"; sourceTree = "<group>"; };
379
-		4562E79007DAB0C0D6F958BC /* Pods-simpleDemo-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo-tvOS.debug.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo-tvOS/Pods-simpleDemo-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
380
-		5C46FE5A2E9627977A3B13E9 /* libPods-simpleDemo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-simpleDemo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
381
 		5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
379
 		5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
382
-		61D6128EB7E59612F733FF02 /* Pods-simpleDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemoTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemoTests/Pods-simpleDemoTests.debug.xcconfig"; sourceTree = "<group>"; };
383
 		78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
380
 		78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
381
+		7DBE11C54C1794050CB58D0C /* Pods-simpleDemo-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo-tvOSTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo-tvOSTests/Pods-simpleDemo-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
382
+		82F4D9BA1D2E573C7D8967BD /* Pods-simpleDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemoTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemoTests/Pods-simpleDemoTests.debug.xcconfig"; sourceTree = "<group>"; };
384
 		832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
383
 		832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
385
-		951159A5104BF2D9AAB23983 /* libPods-simpleDemoTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-simpleDemoTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
384
+		8529A443EE6A2665892F0925 /* libPods-simpleDemo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-simpleDemo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
385
+		8B5D848A63E780BBFBA762D9 /* Pods-simpleDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemoTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemoTests/Pods-simpleDemoTests.release.xcconfig"; sourceTree = "<group>"; };
386
 		ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = "<group>"; };
386
 		ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = "<group>"; };
387
-		B8C83FE8120F5A8CA66DC95D /* Pods-simpleDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo.debug.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo/Pods-simpleDemo.debug.xcconfig"; sourceTree = "<group>"; };
388
-		D411D46516249CACE14D41DC /* Pods-simpleDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo.release.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo/Pods-simpleDemo.release.xcconfig"; sourceTree = "<group>"; };
389
-		DCFC59650767B9DD307D635F /* Pods-simpleDemo-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo-tvOSTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo-tvOSTests/Pods-simpleDemo-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
387
+		AF777D8452EEC1290F3E6AE9 /* Pods-simpleDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo.debug.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo/Pods-simpleDemo.debug.xcconfig"; sourceTree = "<group>"; };
388
+		C54872F329AE851652FDE679 /* Pods-simpleDemo-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-simpleDemo-tvOS.debug.xcconfig"; path = "Pods/Target Support Files/Pods-simpleDemo-tvOS/Pods-simpleDemo-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
389
+		CF4A055EB69C5097DE8CA08F /* libPods-simpleDemo-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-simpleDemo-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
390
 		ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
390
 		ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
391
-		F05F2972B345118AE7DEBA00 /* libPods-simpleDemo-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-simpleDemo-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
391
+		FC142B99FE3A39A7AB6DCD8E /* libPods-simpleDemo-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-simpleDemo-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
392
 /* End PBXFileReference section */
392
 /* End PBXFileReference section */
393
 
393
 
394
 /* Begin PBXFrameworksBuildPhase section */
394
 /* Begin PBXFrameworksBuildPhase section */
397
 			buildActionMask = 2147483647;
397
 			buildActionMask = 2147483647;
398
 			files = (
398
 			files = (
399
 				140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
399
 				140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
400
-				068EAAC85996A1A5C8217EAB /* libPods-simpleDemoTests.a in Frameworks */,
400
+				63B7EEC0B95B266706601836 /* libPods-simpleDemoTests.a in Frameworks */,
401
 			);
401
 			);
402
 			runOnlyForDeploymentPostprocessing = 0;
402
 			runOnlyForDeploymentPostprocessing = 0;
403
 		};
403
 		};
427
 				832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
427
 				832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
428
 				00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
428
 				00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
429
 				139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
429
 				139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
430
-				6793190DE86DEFCF49576B2B /* libPods-simpleDemo.a in Frameworks */,
430
+				31CCB388CDCB8EFDCD2CE281 /* libPods-simpleDemo.a in Frameworks */,
431
 			);
431
 			);
432
 			runOnlyForDeploymentPostprocessing = 0;
432
 			runOnlyForDeploymentPostprocessing = 0;
433
 		};
433
 		};
443
 				2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
443
 				2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
444
 				2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
444
 				2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
445
 				2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
445
 				2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
446
-				3752A059FBE8E09075DA4AE1 /* libPods-simpleDemo-tvOS.a in Frameworks */,
446
+				E62C7ECC7700FF0C6DD17185 /* libPods-simpleDemo-tvOS.a in Frameworks */,
447
 			);
447
 			);
448
 			runOnlyForDeploymentPostprocessing = 0;
448
 			runOnlyForDeploymentPostprocessing = 0;
449
 		};
449
 		};
452
 			buildActionMask = 2147483647;
452
 			buildActionMask = 2147483647;
453
 			files = (
453
 			files = (
454
 				2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
454
 				2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
455
-				F36C97402B4845BDA6A2844C /* libPods-simpleDemo-tvOSTests.a in Frameworks */,
455
+				C778F7B0E7B90C9535781C21 /* libPods-simpleDemo-tvOSTests.a in Frameworks */,
456
 			);
456
 			);
457
 			runOnlyForDeploymentPostprocessing = 0;
457
 			runOnlyForDeploymentPostprocessing = 0;
458
 		};
458
 		};
606
 				0842E36A2206D315003875AC /* libc++.tbd */,
606
 				0842E36A2206D315003875AC /* libc++.tbd */,
607
 				ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
607
 				ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
608
 				2D16E6891FA4F8E400B85C8A /* libReact.a */,
608
 				2D16E6891FA4F8E400B85C8A /* libReact.a */,
609
-				5C46FE5A2E9627977A3B13E9 /* libPods-simpleDemo.a */,
610
-				370F79B8FF06A30AC0F9C3B5 /* libPods-simpleDemo-tvOS.a */,
611
-				F05F2972B345118AE7DEBA00 /* libPods-simpleDemo-tvOSTests.a */,
612
-				951159A5104BF2D9AAB23983 /* libPods-simpleDemoTests.a */,
609
+				8529A443EE6A2665892F0925 /* libPods-simpleDemo.a */,
610
+				CF4A055EB69C5097DE8CA08F /* libPods-simpleDemo-tvOS.a */,
611
+				FC142B99FE3A39A7AB6DCD8E /* libPods-simpleDemo-tvOSTests.a */,
612
+				2A797948A44343327FDA03A9 /* libPods-simpleDemoTests.a */,
613
 			);
613
 			);
614
 			name = Frameworks;
614
 			name = Frameworks;
615
 			sourceTree = "<group>";
615
 			sourceTree = "<group>";
632
 			name = Products;
632
 			name = Products;
633
 			sourceTree = "<group>";
633
 			sourceTree = "<group>";
634
 		};
634
 		};
635
-		7E38130487AE81DA0F050D92 /* Pods */ = {
636
-			isa = PBXGroup;
637
-			children = (
638
-				B8C83FE8120F5A8CA66DC95D /* Pods-simpleDemo.debug.xcconfig */,
639
-				D411D46516249CACE14D41DC /* Pods-simpleDemo.release.xcconfig */,
640
-				4562E79007DAB0C0D6F958BC /* Pods-simpleDemo-tvOS.debug.xcconfig */,
641
-				3FE905B2466BFABBAA8F09A8 /* Pods-simpleDemo-tvOS.release.xcconfig */,
642
-				DCFC59650767B9DD307D635F /* Pods-simpleDemo-tvOSTests.debug.xcconfig */,
643
-				03E6606B86246B0AE5C5BFC5 /* Pods-simpleDemo-tvOSTests.release.xcconfig */,
644
-				61D6128EB7E59612F733FF02 /* Pods-simpleDemoTests.debug.xcconfig */,
645
-				2C28A102506C6EC8AEEADEBB /* Pods-simpleDemoTests.release.xcconfig */,
646
-			);
647
-			name = Pods;
648
-			sourceTree = "<group>";
649
-		};
650
 		832341AE1AAA6A7D00B99B32 /* Libraries */ = {
635
 		832341AE1AAA6A7D00B99B32 /* Libraries */ = {
651
 			isa = PBXGroup;
636
 			isa = PBXGroup;
652
 			children = (
637
 			children = (
685
 				83CBBA001A601CBA00E9B192 /* Products */,
670
 				83CBBA001A601CBA00E9B192 /* Products */,
686
 				2D16E6871FA4F8E400B85C8A /* Frameworks */,
671
 				2D16E6871FA4F8E400B85C8A /* Frameworks */,
687
 				0842E3102206D244003875AC /* Recovered References */,
672
 				0842E3102206D244003875AC /* Recovered References */,
688
-				7E38130487AE81DA0F050D92 /* Pods */,
673
+				CD57037937349533047AEBF5 /* Pods */,
689
 			);
674
 			);
690
 			indentWidth = 2;
675
 			indentWidth = 2;
691
 			sourceTree = "<group>";
676
 			sourceTree = "<group>";
712
 			name = Products;
697
 			name = Products;
713
 			sourceTree = "<group>";
698
 			sourceTree = "<group>";
714
 		};
699
 		};
700
+		CD57037937349533047AEBF5 /* Pods */ = {
701
+			isa = PBXGroup;
702
+			children = (
703
+				AF777D8452EEC1290F3E6AE9 /* Pods-simpleDemo.debug.xcconfig */,
704
+				1CD9D1AEC7C4C297784C698B /* Pods-simpleDemo.release.xcconfig */,
705
+				C54872F329AE851652FDE679 /* Pods-simpleDemo-tvOS.debug.xcconfig */,
706
+				0C65FAA9CB239D95EDB6E00E /* Pods-simpleDemo-tvOS.release.xcconfig */,
707
+				122E4A520172502C9D6B7D36 /* Pods-simpleDemo-tvOSTests.debug.xcconfig */,
708
+				7DBE11C54C1794050CB58D0C /* Pods-simpleDemo-tvOSTests.release.xcconfig */,
709
+				82F4D9BA1D2E573C7D8967BD /* Pods-simpleDemoTests.debug.xcconfig */,
710
+				8B5D848A63E780BBFBA762D9 /* Pods-simpleDemoTests.release.xcconfig */,
711
+			);
712
+			name = Pods;
713
+			sourceTree = "<group>";
714
+		};
715
 /* End PBXGroup section */
715
 /* End PBXGroup section */
716
 
716
 
717
 /* Begin PBXNativeTarget section */
717
 /* Begin PBXNativeTarget section */
719
 			isa = PBXNativeTarget;
719
 			isa = PBXNativeTarget;
720
 			buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "simpleDemoTests" */;
720
 			buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "simpleDemoTests" */;
721
 			buildPhases = (
721
 			buildPhases = (
722
-				4BEA691CDC159330D76026CC /* [CP] Check Pods Manifest.lock */,
722
+				73DF54A2B258856DC0934025 /* [CP] Check Pods Manifest.lock */,
723
 				00E356EA1AD99517003FC87E /* Sources */,
723
 				00E356EA1AD99517003FC87E /* Sources */,
724
 				00E356EB1AD99517003FC87E /* Frameworks */,
724
 				00E356EB1AD99517003FC87E /* Frameworks */,
725
 				00E356EC1AD99517003FC87E /* Resources */,
725
 				00E356EC1AD99517003FC87E /* Resources */,
738
 			isa = PBXNativeTarget;
738
 			isa = PBXNativeTarget;
739
 			buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "simpleDemo" */;
739
 			buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "simpleDemo" */;
740
 			buildPhases = (
740
 			buildPhases = (
741
-				3D4AA6A23B06F1B41AB5B58D /* [CP] Check Pods Manifest.lock */,
741
+				D72FB03A694B20FB623A95E3 /* [CP] Check Pods Manifest.lock */,
742
 				13B07F871A680F5B00A75B9A /* Sources */,
742
 				13B07F871A680F5B00A75B9A /* Sources */,
743
 				13B07F8C1A680F5B00A75B9A /* Frameworks */,
743
 				13B07F8C1A680F5B00A75B9A /* Frameworks */,
744
 				13B07F8E1A680F5B00A75B9A /* Resources */,
744
 				13B07F8E1A680F5B00A75B9A /* Resources */,
757
 			isa = PBXNativeTarget;
757
 			isa = PBXNativeTarget;
758
 			buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "simpleDemo-tvOS" */;
758
 			buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "simpleDemo-tvOS" */;
759
 			buildPhases = (
759
 			buildPhases = (
760
-				E79DD51971EBF6BE2FDAF290 /* [CP] Check Pods Manifest.lock */,
760
+				8745D174B0514FA3CEAC8553 /* [CP] Check Pods Manifest.lock */,
761
 				2D02E4771E0B4A5D006451C7 /* Sources */,
761
 				2D02E4771E0B4A5D006451C7 /* Sources */,
762
 				2D02E4781E0B4A5D006451C7 /* Frameworks */,
762
 				2D02E4781E0B4A5D006451C7 /* Frameworks */,
763
 				2D02E4791E0B4A5D006451C7 /* Resources */,
763
 				2D02E4791E0B4A5D006451C7 /* Resources */,
776
 			isa = PBXNativeTarget;
776
 			isa = PBXNativeTarget;
777
 			buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "simpleDemo-tvOSTests" */;
777
 			buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "simpleDemo-tvOSTests" */;
778
 			buildPhases = (
778
 			buildPhases = (
779
-				9ABCD2800360B9BF14D66946 /* [CP] Check Pods Manifest.lock */,
779
+				377760BF57B8B0C4FBB0A1ED /* [CP] Check Pods Manifest.lock */,
780
 				2D02E48C1E0B4A5D006451C7 /* Sources */,
780
 				2D02E48C1E0B4A5D006451C7 /* Sources */,
781
 				2D02E48D1E0B4A5D006451C7 /* Frameworks */,
781
 				2D02E48D1E0B4A5D006451C7 /* Frameworks */,
782
 				2D02E48E1E0B4A5D006451C7 /* Resources */,
782
 				2D02E48E1E0B4A5D006451C7 /* Resources */,
806
 						TestTargetID = 13B07F861A680F5B00A75B9A;
806
 						TestTargetID = 13B07F861A680F5B00A75B9A;
807
 					};
807
 					};
808
 					13B07F861A680F5B00A75B9A = {
808
 					13B07F861A680F5B00A75B9A = {
809
-						DevelopmentTeam = 56968F5P8G;
809
+						ProvisioningStyle = Manual;
810
 						SystemCapabilities = {
810
 						SystemCapabilities = {
811
 							com.apple.BackgroundModes = {
811
 							com.apple.BackgroundModes = {
812
 								enabled = 1;
812
 								enabled = 1;
1231
 			shellPath = /bin/sh;
1231
 			shellPath = /bin/sh;
1232
 			shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1232
 			shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1233
 		};
1233
 		};
1234
-		3D4AA6A23B06F1B41AB5B58D /* [CP] Check Pods Manifest.lock */ = {
1234
+		377760BF57B8B0C4FBB0A1ED /* [CP] Check Pods Manifest.lock */ = {
1235
 			isa = PBXShellScriptBuildPhase;
1235
 			isa = PBXShellScriptBuildPhase;
1236
 			buildActionMask = 2147483647;
1236
 			buildActionMask = 2147483647;
1237
 			files = (
1237
 			files = (
1246
 			outputFileListPaths = (
1246
 			outputFileListPaths = (
1247
 			);
1247
 			);
1248
 			outputPaths = (
1248
 			outputPaths = (
1249
-				"$(DERIVED_FILE_DIR)/Pods-simpleDemo-checkManifestLockResult.txt",
1249
+				"$(DERIVED_FILE_DIR)/Pods-simpleDemo-tvOSTests-checkManifestLockResult.txt",
1250
 			);
1250
 			);
1251
 			runOnlyForDeploymentPostprocessing = 0;
1251
 			runOnlyForDeploymentPostprocessing = 0;
1252
 			shellPath = /bin/sh;
1252
 			shellPath = /bin/sh;
1253
 			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
1253
 			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
1254
 			showEnvVarsInLog = 0;
1254
 			showEnvVarsInLog = 0;
1255
 		};
1255
 		};
1256
-		4BEA691CDC159330D76026CC /* [CP] Check Pods Manifest.lock */ = {
1256
+		73DF54A2B258856DC0934025 /* [CP] Check Pods Manifest.lock */ = {
1257
 			isa = PBXShellScriptBuildPhase;
1257
 			isa = PBXShellScriptBuildPhase;
1258
 			buildActionMask = 2147483647;
1258
 			buildActionMask = 2147483647;
1259
 			files = (
1259
 			files = (
1275
 			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
1275
 			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
1276
 			showEnvVarsInLog = 0;
1276
 			showEnvVarsInLog = 0;
1277
 		};
1277
 		};
1278
-		9ABCD2800360B9BF14D66946 /* [CP] Check Pods Manifest.lock */ = {
1278
+		8745D174B0514FA3CEAC8553 /* [CP] Check Pods Manifest.lock */ = {
1279
 			isa = PBXShellScriptBuildPhase;
1279
 			isa = PBXShellScriptBuildPhase;
1280
 			buildActionMask = 2147483647;
1280
 			buildActionMask = 2147483647;
1281
 			files = (
1281
 			files = (
1290
 			outputFileListPaths = (
1290
 			outputFileListPaths = (
1291
 			);
1291
 			);
1292
 			outputPaths = (
1292
 			outputPaths = (
1293
-				"$(DERIVED_FILE_DIR)/Pods-simpleDemo-tvOSTests-checkManifestLockResult.txt",
1293
+				"$(DERIVED_FILE_DIR)/Pods-simpleDemo-tvOS-checkManifestLockResult.txt",
1294
 			);
1294
 			);
1295
 			runOnlyForDeploymentPostprocessing = 0;
1295
 			runOnlyForDeploymentPostprocessing = 0;
1296
 			shellPath = /bin/sh;
1296
 			shellPath = /bin/sh;
1297
 			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
1297
 			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
1298
 			showEnvVarsInLog = 0;
1298
 			showEnvVarsInLog = 0;
1299
 		};
1299
 		};
1300
-		E79DD51971EBF6BE2FDAF290 /* [CP] Check Pods Manifest.lock */ = {
1300
+		D72FB03A694B20FB623A95E3 /* [CP] Check Pods Manifest.lock */ = {
1301
 			isa = PBXShellScriptBuildPhase;
1301
 			isa = PBXShellScriptBuildPhase;
1302
 			buildActionMask = 2147483647;
1302
 			buildActionMask = 2147483647;
1303
 			files = (
1303
 			files = (
1312
 			outputFileListPaths = (
1312
 			outputFileListPaths = (
1313
 			);
1313
 			);
1314
 			outputPaths = (
1314
 			outputPaths = (
1315
-				"$(DERIVED_FILE_DIR)/Pods-simpleDemo-tvOS-checkManifestLockResult.txt",
1315
+				"$(DERIVED_FILE_DIR)/Pods-simpleDemo-checkManifestLockResult.txt",
1316
 			);
1316
 			);
1317
 			runOnlyForDeploymentPostprocessing = 0;
1317
 			runOnlyForDeploymentPostprocessing = 0;
1318
 			shellPath = /bin/sh;
1318
 			shellPath = /bin/sh;
1386
 /* Begin XCBuildConfiguration section */
1386
 /* Begin XCBuildConfiguration section */
1387
 		00E356F61AD99517003FC87E /* Debug */ = {
1387
 		00E356F61AD99517003FC87E /* Debug */ = {
1388
 			isa = XCBuildConfiguration;
1388
 			isa = XCBuildConfiguration;
1389
-			baseConfigurationReference = 61D6128EB7E59612F733FF02 /* Pods-simpleDemoTests.debug.xcconfig */;
1389
+			baseConfigurationReference = 82F4D9BA1D2E573C7D8967BD /* Pods-simpleDemoTests.debug.xcconfig */;
1390
 			buildSettings = {
1390
 			buildSettings = {
1391
 				BUNDLE_LOADER = "$(TEST_HOST)";
1391
 				BUNDLE_LOADER = "$(TEST_HOST)";
1392
 				DEVELOPMENT_TEAM = 56968F5P8G;
1392
 				DEVELOPMENT_TEAM = 56968F5P8G;
1411
 		};
1411
 		};
1412
 		00E356F71AD99517003FC87E /* Release */ = {
1412
 		00E356F71AD99517003FC87E /* Release */ = {
1413
 			isa = XCBuildConfiguration;
1413
 			isa = XCBuildConfiguration;
1414
-			baseConfigurationReference = 2C28A102506C6EC8AEEADEBB /* Pods-simpleDemoTests.release.xcconfig */;
1414
+			baseConfigurationReference = 8B5D848A63E780BBFBA762D9 /* Pods-simpleDemoTests.release.xcconfig */;
1415
 			buildSettings = {
1415
 			buildSettings = {
1416
 				BUNDLE_LOADER = "$(TEST_HOST)";
1416
 				BUNDLE_LOADER = "$(TEST_HOST)";
1417
 				COPY_PHASE_STRIP = NO;
1417
 				COPY_PHASE_STRIP = NO;
1433
 		};
1433
 		};
1434
 		13B07F941A680F5B00A75B9A /* Debug */ = {
1434
 		13B07F941A680F5B00A75B9A /* Debug */ = {
1435
 			isa = XCBuildConfiguration;
1435
 			isa = XCBuildConfiguration;
1436
-			baseConfigurationReference = B8C83FE8120F5A8CA66DC95D /* Pods-simpleDemo.debug.xcconfig */;
1436
+			baseConfigurationReference = AF777D8452EEC1290F3E6AE9 /* Pods-simpleDemo.debug.xcconfig */;
1437
 			buildSettings = {
1437
 			buildSettings = {
1438
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1438
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1439
+				CODE_SIGN_STYLE = Manual;
1439
 				CURRENT_PROJECT_VERSION = 1;
1440
 				CURRENT_PROJECT_VERSION = 1;
1440
 				DEAD_CODE_STRIPPING = NO;
1441
 				DEAD_CODE_STRIPPING = NO;
1441
-				DEVELOPMENT_TEAM = 56968F5P8G;
1442
+				DEVELOPMENT_TEAM = "";
1442
 				FRAMEWORK_SEARCH_PATHS = (
1443
 				FRAMEWORK_SEARCH_PATHS = (
1443
 					"$(inherited)",
1444
 					"$(inherited)",
1444
 					"$(SRCROOT)/../node_modules/react-native-agora/ios/**",
1445
 					"$(SRCROOT)/../node_modules/react-native-agora/ios/**",
1458
 					"-ObjC",
1459
 					"-ObjC",
1459
 					"-lc++",
1460
 					"-lc++",
1460
 				);
1461
 				);
1461
-				PRODUCT_BUNDLE_IDENTIFIER = tori.mori.mobi;
1462
+				PRODUCT_BUNDLE_IDENTIFIER = io.agora.simpleDemo;
1462
 				PRODUCT_NAME = simpleDemo;
1463
 				PRODUCT_NAME = simpleDemo;
1464
+				PROVISIONING_PROFILE_SPECIFIER = "";
1463
 				VERSIONING_SYSTEM = "apple-generic";
1465
 				VERSIONING_SYSTEM = "apple-generic";
1464
 			};
1466
 			};
1465
 			name = Debug;
1467
 			name = Debug;
1466
 		};
1468
 		};
1467
 		13B07F951A680F5B00A75B9A /* Release */ = {
1469
 		13B07F951A680F5B00A75B9A /* Release */ = {
1468
 			isa = XCBuildConfiguration;
1470
 			isa = XCBuildConfiguration;
1469
-			baseConfigurationReference = D411D46516249CACE14D41DC /* Pods-simpleDemo.release.xcconfig */;
1471
+			baseConfigurationReference = 1CD9D1AEC7C4C297784C698B /* Pods-simpleDemo.release.xcconfig */;
1470
 			buildSettings = {
1472
 			buildSettings = {
1471
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1473
 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1474
+				CODE_SIGN_STYLE = Manual;
1472
 				CURRENT_PROJECT_VERSION = 1;
1475
 				CURRENT_PROJECT_VERSION = 1;
1473
-				DEVELOPMENT_TEAM = 56968F5P8G;
1476
+				DEVELOPMENT_TEAM = "";
1474
 				FRAMEWORK_SEARCH_PATHS = (
1477
 				FRAMEWORK_SEARCH_PATHS = (
1475
 					"$(inherited)",
1478
 					"$(inherited)",
1476
 					"$(SRCROOT)/../node_modules/react-native-agora/ios/**",
1479
 					"$(SRCROOT)/../node_modules/react-native-agora/ios/**",
1490
 					"-ObjC",
1493
 					"-ObjC",
1491
 					"-lc++",
1494
 					"-lc++",
1492
 				);
1495
 				);
1493
-				PRODUCT_BUNDLE_IDENTIFIER = tori.mori.mobi;
1496
+				PRODUCT_BUNDLE_IDENTIFIER = io.agora.simpleDemo;
1494
 				PRODUCT_NAME = simpleDemo;
1497
 				PRODUCT_NAME = simpleDemo;
1498
+				PROVISIONING_PROFILE_SPECIFIER = "";
1495
 				VERSIONING_SYSTEM = "apple-generic";
1499
 				VERSIONING_SYSTEM = "apple-generic";
1496
 			};
1500
 			};
1497
 			name = Release;
1501
 			name = Release;
1498
 		};
1502
 		};
1499
 		2D02E4971E0B4A5E006451C7 /* Debug */ = {
1503
 		2D02E4971E0B4A5E006451C7 /* Debug */ = {
1500
 			isa = XCBuildConfiguration;
1504
 			isa = XCBuildConfiguration;
1501
-			baseConfigurationReference = 4562E79007DAB0C0D6F958BC /* Pods-simpleDemo-tvOS.debug.xcconfig */;
1505
+			baseConfigurationReference = C54872F329AE851652FDE679 /* Pods-simpleDemo-tvOS.debug.xcconfig */;
1502
 			buildSettings = {
1506
 			buildSettings = {
1503
 				ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1507
 				ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1504
 				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1508
 				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1527
 		};
1531
 		};
1528
 		2D02E4981E0B4A5E006451C7 /* Release */ = {
1532
 		2D02E4981E0B4A5E006451C7 /* Release */ = {
1529
 			isa = XCBuildConfiguration;
1533
 			isa = XCBuildConfiguration;
1530
-			baseConfigurationReference = 3FE905B2466BFABBAA8F09A8 /* Pods-simpleDemo-tvOS.release.xcconfig */;
1534
+			baseConfigurationReference = 0C65FAA9CB239D95EDB6E00E /* Pods-simpleDemo-tvOS.release.xcconfig */;
1531
 			buildSettings = {
1535
 			buildSettings = {
1532
 				ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1536
 				ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1533
 				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1537
 				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1556
 		};
1560
 		};
1557
 		2D02E4991E0B4A5E006451C7 /* Debug */ = {
1561
 		2D02E4991E0B4A5E006451C7 /* Debug */ = {
1558
 			isa = XCBuildConfiguration;
1562
 			isa = XCBuildConfiguration;
1559
-			baseConfigurationReference = DCFC59650767B9DD307D635F /* Pods-simpleDemo-tvOSTests.debug.xcconfig */;
1563
+			baseConfigurationReference = 122E4A520172502C9D6B7D36 /* Pods-simpleDemo-tvOSTests.debug.xcconfig */;
1560
 			buildSettings = {
1564
 			buildSettings = {
1561
 				BUNDLE_LOADER = "$(TEST_HOST)";
1565
 				BUNDLE_LOADER = "$(TEST_HOST)";
1562
 				CLANG_ANALYZER_NONNULL = YES;
1566
 				CLANG_ANALYZER_NONNULL = YES;
1584
 		};
1588
 		};
1585
 		2D02E49A1E0B4A5E006451C7 /* Release */ = {
1589
 		2D02E49A1E0B4A5E006451C7 /* Release */ = {
1586
 			isa = XCBuildConfiguration;
1590
 			isa = XCBuildConfiguration;
1587
-			baseConfigurationReference = 03E6606B86246B0AE5C5BFC5 /* Pods-simpleDemo-tvOSTests.release.xcconfig */;
1591
+			baseConfigurationReference = 7DBE11C54C1794050CB58D0C /* Pods-simpleDemo-tvOSTests.release.xcconfig */;
1588
 			buildSettings = {
1592
 			buildSettings = {
1589
 				BUNDLE_LOADER = "$(TEST_HOST)";
1593
 				BUNDLE_LOADER = "$(TEST_HOST)";
1590
 				CLANG_ANALYZER_NONNULL = YES;
1594
 				CLANG_ANALYZER_NONNULL = YES;

+ 4
- 4
samples/simpleDemo/ios/simpleDemo/Info.plist 파일 보기

37
 			</dict>
37
 			</dict>
38
 		</dict>
38
 		</dict>
39
 	</dict>
39
 	</dict>
40
+	<key>NSCameraUsageDescription</key>
41
+	<string>use camera for avc</string>
40
 	<key>NSLocationWhenInUseUsageDescription</key>
42
 	<key>NSLocationWhenInUseUsageDescription</key>
41
 	<string></string>
43
 	<string></string>
44
+	<key>NSMicrophoneUsageDescription</key>
45
+	<string>use microphone for avc sdk</string>
42
 	<key>UIBackgroundModes</key>
46
 	<key>UIBackgroundModes</key>
43
 	<array>
47
 	<array>
44
 		<string>audio</string>
48
 		<string>audio</string>
57
 	</array>
61
 	</array>
58
 	<key>UIViewControllerBasedStatusBarAppearance</key>
62
 	<key>UIViewControllerBasedStatusBarAppearance</key>
59
 	<false/>
63
 	<false/>
60
-	<key>NSCameraUsageDescription</key>
61
-	<string>use camera for avc</string>
62
-	<key>NSMicrophoneUsageDescription</key>
63
-	<string>use microphone for avc sdk</string>
64
 </dict>
64
 </dict>
65
 </plist>
65
 </plist>

+ 172
- 184
samples/simpleDemo/yarn.lock 파일 보기

10
     "@babel/highlight" "^7.0.0"
10
     "@babel/highlight" "^7.0.0"
11
 
11
 
12
 "@babel/core@^7.0.0", "@babel/core@^7.1.0":
12
 "@babel/core@^7.0.0", "@babel/core@^7.1.0":
13
-  version "7.2.2"
14
-  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687"
15
-  integrity sha512-59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw==
13
+  version "7.3.4"
14
+  resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz#921a5a13746c21e32445bf0798680e9d11a6530b"
15
+  integrity sha512-jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA==
16
   dependencies:
16
   dependencies:
17
     "@babel/code-frame" "^7.0.0"
17
     "@babel/code-frame" "^7.0.0"
18
-    "@babel/generator" "^7.2.2"
18
+    "@babel/generator" "^7.3.4"
19
     "@babel/helpers" "^7.2.0"
19
     "@babel/helpers" "^7.2.0"
20
-    "@babel/parser" "^7.2.2"
20
+    "@babel/parser" "^7.3.4"
21
     "@babel/template" "^7.2.2"
21
     "@babel/template" "^7.2.2"
22
-    "@babel/traverse" "^7.2.2"
23
-    "@babel/types" "^7.2.2"
22
+    "@babel/traverse" "^7.3.4"
23
+    "@babel/types" "^7.3.4"
24
     convert-source-map "^1.1.0"
24
     convert-source-map "^1.1.0"
25
     debug "^4.1.0"
25
     debug "^4.1.0"
26
     json5 "^2.1.0"
26
     json5 "^2.1.0"
27
-    lodash "^4.17.10"
27
+    lodash "^4.17.11"
28
     resolve "^1.3.2"
28
     resolve "^1.3.2"
29
     semver "^5.4.1"
29
     semver "^5.4.1"
30
     source-map "^0.5.0"
30
     source-map "^0.5.0"
31
 
31
 
32
-"@babel/generator@^7.0.0", "@babel/generator@^7.2.2":
33
-  version "7.3.2"
34
-  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.2.tgz#fff31a7b2f2f3dad23ef8e01be45b0d5c2fc0132"
35
-  integrity sha512-f3QCuPppXxtZOEm5GWPra/uYUjmNQlu9pbAD8D/9jze4pTY83rTtB1igTBSwvkeNlC5gR24zFFkz+2WHLFQhqQ==
32
+"@babel/generator@^7.0.0", "@babel/generator@^7.3.4":
33
+  version "7.3.4"
34
+  resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.4.tgz#9aa48c1989257877a9d971296e5b73bfe72e446e"
35
+  integrity sha512-8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg==
36
   dependencies:
36
   dependencies:
37
-    "@babel/types" "^7.3.2"
37
+    "@babel/types" "^7.3.4"
38
     jsesc "^2.5.1"
38
     jsesc "^2.5.1"
39
-    lodash "^4.17.10"
39
+    lodash "^4.17.11"
40
     source-map "^0.5.0"
40
     source-map "^0.5.0"
41
     trim-right "^1.0.1"
41
     trim-right "^1.0.1"
42
 
42
 
72
     "@babel/traverse" "^7.1.0"
72
     "@babel/traverse" "^7.1.0"
73
     "@babel/types" "^7.0.0"
73
     "@babel/types" "^7.0.0"
74
 
74
 
75
-"@babel/helper-create-class-features-plugin@^7.3.0":
76
-  version "7.3.2"
77
-  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.3.2.tgz#ba1685603eb1c9f2f51c9106d5180135c163fe73"
78
-  integrity sha512-tdW8+V8ceh2US4GsYdNVNoohq5uVwOf9k6krjwW4E1lINcHgttnWcNqgdoessn12dAy8QkbezlbQh2nXISNY+A==
75
+"@babel/helper-create-class-features-plugin@^7.3.4":
76
+  version "7.3.4"
77
+  resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.3.4.tgz#092711a7a3ad8ea34de3e541644c2ce6af1f6f0c"
78
+  integrity sha512-uFpzw6L2omjibjxa8VGZsJUPL5wJH0zzGKpoz0ccBkzIa6C8kWNUbiBmQ0rgOKWlHJ6qzmfa6lTiGchiV8SC+g==
79
   dependencies:
79
   dependencies:
80
     "@babel/helper-function-name" "^7.1.0"
80
     "@babel/helper-function-name" "^7.1.0"
81
     "@babel/helper-member-expression-to-functions" "^7.0.0"
81
     "@babel/helper-member-expression-to-functions" "^7.0.0"
82
     "@babel/helper-optimise-call-expression" "^7.0.0"
82
     "@babel/helper-optimise-call-expression" "^7.0.0"
83
     "@babel/helper-plugin-utils" "^7.0.0"
83
     "@babel/helper-plugin-utils" "^7.0.0"
84
-    "@babel/helper-replace-supers" "^7.2.3"
84
+    "@babel/helper-replace-supers" "^7.3.4"
85
+    "@babel/helper-split-export-declaration" "^7.0.0"
85
 
86
 
86
 "@babel/helper-define-map@^7.1.0":
87
 "@babel/helper-define-map@^7.1.0":
87
   version "7.1.0"
88
   version "7.1.0"
179
     "@babel/traverse" "^7.1.0"
180
     "@babel/traverse" "^7.1.0"
180
     "@babel/types" "^7.0.0"
181
     "@babel/types" "^7.0.0"
181
 
182
 
182
-"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.2.3":
183
-  version "7.2.3"
184
-  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.2.3.tgz#19970020cf22677d62b3a689561dbd9644d8c5e5"
185
-  integrity sha512-GyieIznGUfPXPWu0yLS6U55Mz67AZD9cUk0BfirOWlPrXlBcan9Gz+vHGz+cPfuoweZSnPzPIm67VtQM0OWZbA==
183
+"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.3.4":
184
+  version "7.3.4"
185
+  resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.3.4.tgz#a795208e9b911a6eeb08e5891faacf06e7013e13"
186
+  integrity sha512-pvObL9WVf2ADs+ePg0jrqlhHoxRXlOa+SHRHzAXIz2xkYuOHfGl+fKxPMaS4Fq+uje8JQPobnertBBvyrWnQ1A==
186
   dependencies:
187
   dependencies:
187
     "@babel/helper-member-expression-to-functions" "^7.0.0"
188
     "@babel/helper-member-expression-to-functions" "^7.0.0"
188
     "@babel/helper-optimise-call-expression" "^7.0.0"
189
     "@babel/helper-optimise-call-expression" "^7.0.0"
189
-    "@babel/traverse" "^7.2.3"
190
-    "@babel/types" "^7.0.0"
190
+    "@babel/traverse" "^7.3.4"
191
+    "@babel/types" "^7.3.4"
191
 
192
 
192
 "@babel/helper-simple-access@^7.1.0":
193
 "@babel/helper-simple-access@^7.1.0":
193
   version "7.1.0"
194
   version "7.1.0"
232
     esutils "^2.0.2"
233
     esutils "^2.0.2"
233
     js-tokens "^4.0.0"
234
     js-tokens "^4.0.0"
234
 
235
 
235
-"@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.2.3":
236
-  version "7.3.2"
237
-  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.2.tgz#95cdeddfc3992a6ca2a1315191c1679ca32c55cd"
238
-  integrity sha512-QzNUC2RO1gadg+fs21fi0Uu0OuGNzRKEmgCxoLNzbCdoprLwjfmZwzUrpUNfJPaVRwBpDY47A17yYEGWyRelnQ==
236
+"@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.3.4":
237
+  version "7.3.4"
238
+  resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz#a43357e4bbf4b92a437fb9e465c192848287f27c"
239
+  integrity sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ==
239
 
240
 
240
 "@babel/plugin-external-helpers@^7.0.0":
241
 "@babel/plugin-external-helpers@^7.0.0":
241
   version "7.2.0"
242
   version "7.2.0"
245
     "@babel/helper-plugin-utils" "^7.0.0"
246
     "@babel/helper-plugin-utils" "^7.0.0"
246
 
247
 
247
 "@babel/plugin-proposal-class-properties@^7.0.0":
248
 "@babel/plugin-proposal-class-properties@^7.0.0":
248
-  version "7.3.0"
249
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.3.0.tgz#272636bc0fa19a0bc46e601ec78136a173ea36cd"
250
-  integrity sha512-wNHxLkEKTQ2ay0tnsam2z7fGZUi+05ziDJflEt3AZTP3oXLKHJp9HqhfroB/vdMvt3sda9fAbq7FsG8QPDrZBg==
249
+  version "7.3.4"
250
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.3.4.tgz#410f5173b3dc45939f9ab30ca26684d72901405e"
251
+  integrity sha512-lUf8D3HLs4yYlAo8zjuneLvfxN7qfKv1Yzbj5vjqaqMJxgJA3Ipwp4VUJ+OrOdz53Wbww6ahwB8UhB2HQyLotA==
251
   dependencies:
252
   dependencies:
252
-    "@babel/helper-create-class-features-plugin" "^7.3.0"
253
+    "@babel/helper-create-class-features-plugin" "^7.3.4"
253
     "@babel/helper-plugin-utils" "^7.0.0"
254
     "@babel/helper-plugin-utils" "^7.0.0"
254
 
255
 
255
 "@babel/plugin-proposal-export-default-from@^7.0.0":
256
 "@babel/plugin-proposal-export-default-from@^7.0.0":
269
     "@babel/plugin-syntax-nullish-coalescing-operator" "^7.2.0"
270
     "@babel/plugin-syntax-nullish-coalescing-operator" "^7.2.0"
270
 
271
 
271
 "@babel/plugin-proposal-object-rest-spread@^7.0.0":
272
 "@babel/plugin-proposal-object-rest-spread@^7.0.0":
272
-  version "7.3.2"
273
-  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.2.tgz#6d1859882d4d778578e41f82cc5d7bf3d5daf6c1"
274
-  integrity sha512-DjeMS+J2+lpANkYLLO+m6GjoTMygYglKmRe6cDTbFv3L9i6mmiE8fe6B8MtCSLZpVXscD5kn7s6SgtHrDoBWoA==
273
+  version "7.3.4"
274
+  resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.3.4.tgz#47f73cf7f2a721aad5c0261205405c642e424654"
275
+  integrity sha512-j7VQmbbkA+qrzNqbKHrBsW3ddFnOeva6wzSe/zB7T+xaxGc+RCpwo44wCmRixAIGRoIpmVgvzFzNJqQcO3/9RA==
275
   dependencies:
276
   dependencies:
276
     "@babel/helper-plugin-utils" "^7.0.0"
277
     "@babel/helper-plugin-utils" "^7.0.0"
277
     "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
278
     "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
356
     "@babel/helper-plugin-utils" "^7.0.0"
357
     "@babel/helper-plugin-utils" "^7.0.0"
357
 
358
 
358
 "@babel/plugin-syntax-typescript@^7.2.0":
359
 "@babel/plugin-syntax-typescript@^7.2.0":
359
-  version "7.2.0"
360
-  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.2.0.tgz#55d240536bd314dcbbec70fd949c5cabaed1de29"
361
-  integrity sha512-WhKr6yu6yGpGcNMVgIBuI9MkredpVc7Y3YR4UzEZmDztHoL6wV56YBHLhWnjO1EvId1B32HrD3DRFc+zSoKI1g==
360
+  version "7.3.3"
361
+  resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.3.3.tgz#a7cc3f66119a9f7ebe2de5383cce193473d65991"
362
+  integrity sha512-dGwbSMA1YhVS8+31CnPR7LB4pcbrzcV99wQzby4uAfrkZPYZlQ7ImwdpzLqi6Z6IL02b8IAL379CaMwo0x5Lag==
362
   dependencies:
363
   dependencies:
363
     "@babel/helper-plugin-utils" "^7.0.0"
364
     "@babel/helper-plugin-utils" "^7.0.0"
364
 
365
 
370
     "@babel/helper-plugin-utils" "^7.0.0"
371
     "@babel/helper-plugin-utils" "^7.0.0"
371
 
372
 
372
 "@babel/plugin-transform-async-to-generator@^7.0.0":
373
 "@babel/plugin-transform-async-to-generator@^7.0.0":
373
-  version "7.2.0"
374
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.2.0.tgz#68b8a438663e88519e65b776f8938f3445b1a2ff"
375
-  integrity sha512-CEHzg4g5UraReozI9D4fblBYABs7IM6UerAVG7EJVrTLC5keh00aEuLUT+O40+mJCEzaXkYfTCUKIyeDfMOFFQ==
374
+  version "7.3.4"
375
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.3.4.tgz#4e45408d3c3da231c0e7b823f407a53a7eb3048c"
376
+  integrity sha512-Y7nCzv2fw/jEZ9f678MuKdMo99MFDJMT/PvD9LisrR5JDFcJH6vYeH6RnjVt3p5tceyGRvTtEN0VOlU+rgHZjA==
376
   dependencies:
377
   dependencies:
377
     "@babel/helper-module-imports" "^7.0.0"
378
     "@babel/helper-module-imports" "^7.0.0"
378
     "@babel/helper-plugin-utils" "^7.0.0"
379
     "@babel/helper-plugin-utils" "^7.0.0"
386
     "@babel/helper-plugin-utils" "^7.0.0"
387
     "@babel/helper-plugin-utils" "^7.0.0"
387
 
388
 
388
 "@babel/plugin-transform-block-scoping@^7.0.0":
389
 "@babel/plugin-transform-block-scoping@^7.0.0":
389
-  version "7.2.0"
390
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.2.0.tgz#f17c49d91eedbcdf5dd50597d16f5f2f770132d4"
391
-  integrity sha512-vDTgf19ZEV6mx35yiPJe4fS02mPQUUcBNwWQSZFXSzTSbsJFQvHt7DqyS3LK8oOWALFOsJ+8bbqBgkirZteD5Q==
390
+  version "7.3.4"
391
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.3.4.tgz#5c22c339de234076eee96c8783b2fed61202c5c4"
392
+  integrity sha512-blRr2O8IOZLAOJklXLV4WhcEzpYafYQKSGT3+R26lWG41u/FODJuBggehtOwilVAcFu393v3OFj+HmaE6tVjhA==
392
   dependencies:
393
   dependencies:
393
     "@babel/helper-plugin-utils" "^7.0.0"
394
     "@babel/helper-plugin-utils" "^7.0.0"
394
-    lodash "^4.17.10"
395
+    lodash "^4.17.11"
395
 
396
 
396
 "@babel/plugin-transform-classes@^7.0.0":
397
 "@babel/plugin-transform-classes@^7.0.0":
397
-  version "7.2.2"
398
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.2.2.tgz#6c90542f210ee975aa2aa8c8b5af7fa73a126953"
399
-  integrity sha512-gEZvgTy1VtcDOaQty1l10T3jQmJKlNVxLDCs+3rCVPr6nMkODLELxViq5X9l+rfxbie3XrfrMCYYY6eX3aOcOQ==
398
+  version "7.3.4"
399
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.3.4.tgz#dc173cb999c6c5297e0b5f2277fdaaec3739d0cc"
400
+  integrity sha512-J9fAvCFBkXEvBimgYxCjvaVDzL6thk0j0dBvCeZmIUDBwyt+nv6HfbImsSrWsYXfDNDivyANgJlFXDUWRTZBuA==
400
   dependencies:
401
   dependencies:
401
     "@babel/helper-annotate-as-pure" "^7.0.0"
402
     "@babel/helper-annotate-as-pure" "^7.0.0"
402
     "@babel/helper-define-map" "^7.1.0"
403
     "@babel/helper-define-map" "^7.1.0"
403
     "@babel/helper-function-name" "^7.1.0"
404
     "@babel/helper-function-name" "^7.1.0"
404
     "@babel/helper-optimise-call-expression" "^7.0.0"
405
     "@babel/helper-optimise-call-expression" "^7.0.0"
405
     "@babel/helper-plugin-utils" "^7.0.0"
406
     "@babel/helper-plugin-utils" "^7.0.0"
406
-    "@babel/helper-replace-supers" "^7.1.0"
407
+    "@babel/helper-replace-supers" "^7.3.4"
407
     "@babel/helper-split-export-declaration" "^7.0.0"
408
     "@babel/helper-split-export-declaration" "^7.0.0"
408
     globals "^11.1.0"
409
     globals "^11.1.0"
409
 
410
 
430
     "@babel/helper-plugin-utils" "^7.0.0"
431
     "@babel/helper-plugin-utils" "^7.0.0"
431
 
432
 
432
 "@babel/plugin-transform-flow-strip-types@^7.0.0":
433
 "@babel/plugin-transform-flow-strip-types@^7.0.0":
433
-  version "7.2.3"
434
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.2.3.tgz#e3ac2a594948454e7431c7db33e1d02d51b5cd69"
435
-  integrity sha512-xnt7UIk9GYZRitqCnsVMjQK1O2eKZwFB3CvvHjf5SGx6K6vr/MScCKQDnf1DxRaj501e3pXjti+inbSXX2ZUoQ==
434
+  version "7.3.4"
435
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.3.4.tgz#00156236defb7dedddc2d3c9477dcc01a4494327"
436
+  integrity sha512-PmQC9R7DwpBFA+7ATKMyzViz3zCaMNouzZMPZN2K5PnbBbtL3AXFYTkDk+Hey5crQq2A90UG5Uthz0mel+XZrA==
436
   dependencies:
437
   dependencies:
437
     "@babel/helper-plugin-utils" "^7.0.0"
438
     "@babel/helper-plugin-utils" "^7.0.0"
438
     "@babel/plugin-syntax-flow" "^7.2.0"
439
     "@babel/plugin-syntax-flow" "^7.2.0"
491
     "@babel/helper-replace-supers" "^7.1.0"
492
     "@babel/helper-replace-supers" "^7.1.0"
492
 
493
 
493
 "@babel/plugin-transform-parameters@^7.0.0":
494
 "@babel/plugin-transform-parameters@^7.0.0":
494
-  version "7.2.0"
495
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.2.0.tgz#0d5ad15dc805e2ea866df4dd6682bfe76d1408c2"
496
-  integrity sha512-kB9+hhUidIgUoBQ0MsxMewhzr8i60nMa2KgeJKQWYrqQpqcBYtnpR+JgkadZVZoaEZ/eKu9mclFaVwhRpLNSzA==
495
+  version "7.3.3"
496
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.3.3.tgz#3a873e07114e1a5bee17d04815662c8317f10e30"
497
+  integrity sha512-IrIP25VvXWu/VlBWTpsjGptpomtIkYrN/3aDp4UKm7xK6UxZY88kcJ1UwETbzHAlwN21MnNfwlar0u8y3KpiXw==
497
   dependencies:
498
   dependencies:
498
     "@babel/helper-call-delegate" "^7.1.0"
499
     "@babel/helper-call-delegate" "^7.1.0"
499
     "@babel/helper-get-function-arity" "^7.0.0"
500
     "@babel/helper-get-function-arity" "^7.0.0"
531
     "@babel/plugin-syntax-jsx" "^7.2.0"
532
     "@babel/plugin-syntax-jsx" "^7.2.0"
532
 
533
 
533
 "@babel/plugin-transform-regenerator@^7.0.0":
534
 "@babel/plugin-transform-regenerator@^7.0.0":
534
-  version "7.0.0"
535
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.0.0.tgz#5b41686b4ed40bef874d7ed6a84bdd849c13e0c1"
536
-  integrity sha512-sj2qzsEx8KDVv1QuJc/dEfilkg3RRPvPYx/VnKLtItVQRWt1Wqf5eVCOLZm29CiGFfYYsA3VPjfizTCV0S0Dlw==
535
+  version "7.3.4"
536
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.3.4.tgz#1601655c362f5b38eead6a52631f5106b29fa46a"
537
+  integrity sha512-hvJg8EReQvXT6G9H2MvNPXkv9zK36Vxa1+csAVTpE1J3j0zlHplw76uudEbJxgvqZzAq9Yh45FLD4pk5mKRFQA==
537
   dependencies:
538
   dependencies:
538
-    regenerator-transform "^0.13.3"
539
+    regenerator-transform "^0.13.4"
539
 
540
 
540
 "@babel/plugin-transform-runtime@^7.0.0":
541
 "@babel/plugin-transform-runtime@^7.0.0":
541
-  version "7.2.0"
542
-  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.2.0.tgz#566bc43f7d0aedc880eaddbd29168d0f248966ea"
543
-  integrity sha512-jIgkljDdq4RYDnJyQsiWbdvGeei/0MOTtSHKO/rfbd/mXBxNpdlulMx49L0HQ4pug1fXannxoqCI+fYSle9eSw==
542
+  version "7.3.4"
543
+  resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.3.4.tgz#57805ac8c1798d102ecd75c03b024a5b3ea9b431"
544
+  integrity sha512-PaoARuztAdd5MgeVjAxnIDAIUet5KpogqaefQvPOmPYCxYoaPhautxDh3aO8a4xHsKgT/b9gSxR0BKK1MIewPA==
544
   dependencies:
545
   dependencies:
545
     "@babel/helper-module-imports" "^7.0.0"
546
     "@babel/helper-module-imports" "^7.0.0"
546
     "@babel/helper-plugin-utils" "^7.0.0"
547
     "@babel/helper-plugin-utils" "^7.0.0"
608
     source-map-support "^0.5.9"
609
     source-map-support "^0.5.9"
609
 
610
 
610
 "@babel/runtime@^7.0.0":
611
 "@babel/runtime@^7.0.0":
611
-  version "7.3.1"
612
-  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.3.1.tgz#574b03e8e8a9898eaf4a872a92ea20b7846f6f2a"
613
-  integrity sha512-7jGW8ppV0ant637pIqAcFfQDDH1orEPGJb8aXfUozuCU3QqX7rX4DA8iwrbPrR1hcH0FTTHz47yQnk+bl5xHQA==
612
+  version "7.3.4"
613
+  resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.3.4.tgz#73d12ba819e365fcf7fd152aed56d6df97d21c83"
614
+  integrity sha512-IvfvnMdSaLBateu0jfsYIpZTxAc2cKEXEMiezGGN75QcBcecDUKd3PgLAncT0oOgxKy8dd8hrJKj9MfzgfZd6g==
614
   dependencies:
615
   dependencies:
615
     regenerator-runtime "^0.12.0"
616
     regenerator-runtime "^0.12.0"
616
 
617
 
623
     "@babel/parser" "^7.2.2"
624
     "@babel/parser" "^7.2.2"
624
     "@babel/types" "^7.2.2"
625
     "@babel/types" "^7.2.2"
625
 
626
 
626
-"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.2.2", "@babel/traverse@^7.2.3":
627
-  version "7.2.3"
628
-  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8"
629
-  integrity sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw==
627
+"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.3.4":
628
+  version "7.3.4"
629
+  resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.3.4.tgz#1330aab72234f8dea091b08c4f8b9d05c7119e06"
630
+  integrity sha512-TvTHKp6471OYEcE/91uWmhR6PrrYywQntCHSaZ8CM8Vmp+pjAusal4nGB2WCCQd0rvI7nOMKn9GnbcvTUz3/ZQ==
630
   dependencies:
631
   dependencies:
631
     "@babel/code-frame" "^7.0.0"
632
     "@babel/code-frame" "^7.0.0"
632
-    "@babel/generator" "^7.2.2"
633
+    "@babel/generator" "^7.3.4"
633
     "@babel/helper-function-name" "^7.1.0"
634
     "@babel/helper-function-name" "^7.1.0"
634
     "@babel/helper-split-export-declaration" "^7.0.0"
635
     "@babel/helper-split-export-declaration" "^7.0.0"
635
-    "@babel/parser" "^7.2.3"
636
-    "@babel/types" "^7.2.2"
636
+    "@babel/parser" "^7.3.4"
637
+    "@babel/types" "^7.3.4"
637
     debug "^4.1.0"
638
     debug "^4.1.0"
638
     globals "^11.1.0"
639
     globals "^11.1.0"
639
-    lodash "^4.17.10"
640
+    lodash "^4.17.11"
640
 
641
 
641
-"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.2":
642
-  version "7.3.2"
643
-  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.2.tgz#424f5be4be633fff33fb83ab8d67e4a8290f5a2f"
644
-  integrity sha512-3Y6H8xlUlpbGR+XvawiH0UXehqydTmNmEpozWcXymqwcrwYAl5KMvKtQ+TF6f6E08V6Jur7v/ykdDSF+WDEIXQ==
642
+"@babel/types@^7.0.0", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.4":
643
+  version "7.3.4"
644
+  resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.4.tgz#bf482eaeaffb367a28abbf9357a94963235d90ed"
645
+  integrity sha512-WEkp8MsLftM7O/ty580wAmZzN1nDmCACc5+jFzUt+GUFNNIi3LdRlueYz0YIlmJhlZx1QYDMZL5vdWCL0fNjFQ==
645
   dependencies:
646
   dependencies:
646
     esutils "^2.0.2"
647
     esutils "^2.0.2"
647
-    lodash "^4.17.10"
648
+    lodash "^4.17.11"
648
     to-fast-properties "^2.0.0"
649
     to-fast-properties "^2.0.0"
649
 
650
 
650
 abab@^2.0.0:
651
 abab@^2.0.0:
689
   integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
690
   integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
690
 
691
 
691
 acorn@^6.0.1:
692
 acorn@^6.0.1:
692
-  version "6.1.0"
693
-  resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.0.tgz#b0a3be31752c97a0f7013c5f4903b71a05db6818"
694
-  integrity sha512-MW/FjM+IvU9CgBzjO3UIPCE2pyEwUsoFl+VGdczOPEdxfGFjuKny/gN54mOuX7Qxmb9Rg9MCn2oKiSUeW+pjrw==
693
+  version "6.1.1"
694
+  resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f"
695
+  integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==
695
 
696
 
696
 ajv@^6.5.5:
697
 ajv@^6.5.5:
697
-  version "6.9.1"
698
-  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.9.1.tgz#a4d3683d74abc5670e75f0b16520f70a20ea8dc1"
699
-  integrity sha512-XDN92U311aINL77ieWHmqCcNlwjoP5cHXDxIxbf2MaPYuCXOHS7gHH8jktxeK5omgd52XbSTX6a4Piwd1pQmzA==
698
+  version "6.9.2"
699
+  resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.9.2.tgz#4927adb83e7f48e5a32b45729744c71ec39c9c7b"
700
+  integrity sha512-4UFy0/LgDo7Oa/+wOAlj44tp9K78u38E5/359eSrqEp1Z5PdVfimCcs7SluXMP755RUQu6d2b4AvF0R1C9RZjg==
700
   dependencies:
701
   dependencies:
701
     fast-deep-equal "^2.0.1"
702
     fast-deep-equal "^2.0.1"
702
     fast-json-stable-stringify "^2.0.0"
703
     fast-json-stable-stringify "^2.0.0"
1046
     test-exclude "^4.2.1"
1047
     test-exclude "^4.2.1"
1047
 
1048
 
1048
 babel-plugin-istanbul@^5.1.0:
1049
 babel-plugin-istanbul@^5.1.0:
1049
-  version "5.1.0"
1050
-  resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.0.tgz#6892f529eff65a3e2d33d87dc5888ffa2ecd4a30"
1051
-  integrity sha512-CLoXPRSUWiR8yao8bShqZUIC6qLfZVVY3X1wj+QPNXu0wfmrRRfarh1LYy+dYMVI+bDj0ghy3tuqFFRFZmL1Nw==
1050
+  version "5.1.1"
1051
+  resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.1.tgz#7981590f1956d75d67630ba46f0c22493588c893"
1052
+  integrity sha512-RNNVv2lsHAXJQsEJ5jonQwrJVWK8AcZpG1oxhnjCUaAjL7xahYLANhPUZbzEQHjKy1NMYUwn+0NPKQc8iSY4xQ==
1052
   dependencies:
1053
   dependencies:
1053
     find-up "^3.0.0"
1054
     find-up "^3.0.0"
1054
     istanbul-lib-instrument "^3.0.0"
1055
     istanbul-lib-instrument "^3.0.0"
1228
     tweetnacl "^0.14.3"
1229
     tweetnacl "^0.14.3"
1229
 
1230
 
1230
 big-integer@^1.6.7:
1231
 big-integer@^1.6.7:
1231
-  version "1.6.41"
1232
-  resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.41.tgz#6fb0e51bc8661129ef3832d46c939170b81ca794"
1233
-  integrity sha512-d5AT9lMTYJ/ZE/4gzxb+5ttPcRWljVsvv7lF1w9KzkPhVUhBtHrjDo1J8swfZKepfLsliDhYa31zRYwcD0Yg9w==
1232
+  version "1.6.42"
1233
+  resolved "https://registry.yarnpkg.com/big-integer/-/big-integer-1.6.42.tgz#91623ae5ceeff9a47416c56c9440a66f12f534f1"
1234
+  integrity sha512-3UQFKcRMx+5Z+IK5vYTMYK2jzLRJkt+XqyDdacgWgtMjjuifKpKTFneJLEgeBElOE2/lXZ1LcMcb5s8pwG2U8Q==
1234
 
1235
 
1235
 bplist-creator@0.0.7:
1236
 bplist-creator@0.0.7:
1236
   version "0.0.7"
1237
   version "0.0.7"
1527
   integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=
1528
   integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=
1528
 
1529
 
1529
 compressible@~2.0.14:
1530
 compressible@~2.0.14:
1530
-  version "2.0.15"
1531
-  resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.15.tgz#857a9ab0a7e5a07d8d837ed43fe2defff64fe212"
1532
-  integrity sha512-4aE67DL33dSW9gw4CI2H/yTxqHLNcxp0yS6jB+4h+wr3e43+1z7vm0HU9qXOH8j+qjKuL8+UtkOxYQSMq60Ylw==
1531
+  version "2.0.16"
1532
+  resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.16.tgz#a49bf9858f3821b64ce1be0296afc7380466a77f"
1533
+  integrity sha512-JQfEOdnI7dASwCuSPWIeVYwc/zMsu/+tRhoUvEfXz2gxOA2DNjmG5vhtFdBlhWPPGo+RdT9S3tgc/uH5qgDiiA==
1533
   dependencies:
1534
   dependencies:
1534
-    mime-db ">= 1.36.0 < 2"
1535
+    mime-db ">= 1.38.0 < 2"
1535
 
1536
 
1536
 compression@^1.7.1:
1537
 compression@^1.7.1:
1537
   version "1.7.3"
1538
   version "1.7.3"
1594
   integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=
1595
   integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=
1595
 
1596
 
1596
 core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0, core-js@^2.5.7:
1597
 core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0, core-js@^2.5.7:
1597
-  version "2.6.4"
1598
-  resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.4.tgz#b8897c062c4d769dd30a0ac5c73976c47f92ea0d"
1599
-  integrity sha512-05qQ5hXShcqGkPZpXEFLIpxayZscVD2kuMBZewxiIPPEagukO4mqgPA9CWhUvFBJfy3ODdK2p9xyHh7FTU9/7A==
1598
+  version "2.6.5"
1599
+  resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.5.tgz#44bc8d249e7fb2ff5d00e0341a7ffb94fbf67895"
1600
+  integrity sha512-klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A==
1600
 
1601
 
1601
 core-util-is@1.0.2, core-util-is@~1.0.0:
1602
 core-util-is@1.0.2, core-util-is@~1.0.0:
1602
   version "1.0.2"
1603
   version "1.0.2"
1604
   integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
1605
   integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
1605
 
1606
 
1606
 cosmiconfig@^5.0.5:
1607
 cosmiconfig@^5.0.5:
1607
-  version "5.0.7"
1608
-  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz#39826b292ee0d78eda137dfa3173bd1c21a43b04"
1609
-  integrity sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA==
1608
+  version "5.1.0"
1609
+  resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.1.0.tgz#6c5c35e97f37f985061cdf653f114784231185cf"
1610
+  integrity sha512-kCNPvthka8gvLtzAxQXvWo4FxqRB+ftRZyPZNuab5ngvM9Y7yw7hbEysglptLgpkGX9nAOKTBVkHUAe8xtYR6Q==
1610
   dependencies:
1611
   dependencies:
1611
     import-fresh "^2.0.0"
1612
     import-fresh "^2.0.0"
1612
     is-directory "^0.3.1"
1613
     is-directory "^0.3.1"
1613
     js-yaml "^3.9.0"
1614
     js-yaml "^3.9.0"
1615
+    lodash.get "^4.4.2"
1614
     parse-json "^4.0.0"
1616
     parse-json "^4.0.0"
1615
 
1617
 
1616
 create-react-class@^15.6.3:
1618
 create-react-class@^15.6.3:
1648
   integrity sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A==
1650
   integrity sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A==
1649
 
1651
 
1650
 cssstyle@^1.0.0:
1652
 cssstyle@^1.0.0:
1651
-  version "1.1.1"
1652
-  resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.1.1.tgz#18b038a9c44d65f7a8e428a653b9f6fe42faf5fb"
1653
-  integrity sha512-364AI1l/M5TYcFH83JnOH/pSqgaNnKmYgKrm0didZMGKWjQB60dymwWy1rKUgL3J1ffdq9xVi2yGLHdSjjSNog==
1653
+  version "1.2.1"
1654
+  resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.1.tgz#3aceb2759eaf514ac1a21628d723d6043a819495"
1655
+  integrity sha512-7DYm8qe+gPx/h77QlCyFmX80+fGaE/6A/Ekl0zaszYOubvySO2saYFdQ78P29D0UsULxFKCetDGNaNRUdSF+2A==
1654
   dependencies:
1656
   dependencies:
1655
     cssom "0.3.x"
1657
     cssom "0.3.x"
1656
 
1658
 
1902
   integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1904
   integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
1903
 
1905
 
1904
 escodegen@^1.9.1:
1906
 escodegen@^1.9.1:
1905
-  version "1.11.0"
1906
-  resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.0.tgz#b27a9389481d5bfd5bec76f7bb1eb3f8f4556589"
1907
-  integrity sha512-IeMV45ReixHS53K/OmfKAIztN/igDHzTJUhZM3k1jMhIZWjk45SMwAtBsEXiJp3vSPmTcu6CXn7mDvFHRN66fw==
1907
+  version "1.11.1"
1908
+  resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510"
1909
+  integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw==
1908
   dependencies:
1910
   dependencies:
1909
     esprima "^3.1.3"
1911
     esprima "^3.1.3"
1910
     estraverse "^4.2.0"
1912
     estraverse "^4.2.0"
2141
   integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==
2143
   integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==
2142
 
2144
 
2143
 fbjs-scripts@^1.0.0:
2145
 fbjs-scripts@^1.0.0:
2144
-  version "1.0.1"
2145
-  resolved "https://registry.yarnpkg.com/fbjs-scripts/-/fbjs-scripts-1.0.1.tgz#7d8d09d76e83308bf3b1fc7b4c9c6fd081c5ef64"
2146
-  integrity sha512-x8bfX7k0z5B24Ue0YqjZq/2QxxaKZUNbkGdX//zbQDElMJFqBRrvRi8O3qds7UNNzs78jYqIYCS32Sk/wu5UJg==
2146
+  version "1.1.0"
2147
+  resolved "https://registry.yarnpkg.com/fbjs-scripts/-/fbjs-scripts-1.1.0.tgz#d9e855aed19b572be9dfe39da70d8aece724eed9"
2148
+  integrity sha512-VMCpHJd76YI2nYOfVM/d9LDAIFTH4uw4/7sAIGEgxk6kaNmirgTY9bLgpla9DTu+DvV2+ufvDxehGbl2U9bYCA==
2147
   dependencies:
2149
   dependencies:
2148
     "@babel/core" "^7.0.0"
2150
     "@babel/core" "^7.0.0"
2149
     ansi-colors "^1.0.1"
2151
     ansi-colors "^1.0.1"
2449
   resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
2451
   resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
2450
   integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
2452
   integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
2451
 
2453
 
2452
-handlebars@^4.0.11, handlebars@^4.0.3:
2454
+handlebars@^4.0.3, handlebars@^4.1.0:
2453
   version "4.1.0"
2455
   version "4.1.0"
2454
   resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.0.tgz#0d6a6f34ff1f63cecec8423aa4169827bf787c3a"
2456
   resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.0.tgz#0d6a6f34ff1f63cecec8423aa4169827bf787c3a"
2455
   integrity sha512-l2jRuU1NAWK6AW5qqcTATWQJvNPEwkM7NEKSiv/gqOsoSQbVoWyqVEY5GS+XPQ88zLNmqASRpzfdm8d79hJS+w==
2457
   integrity sha512-l2jRuU1NAWK6AW5qqcTATWQJvNPEwkM7NEKSiv/gqOsoSQbVoWyqVEY5GS+XPQ88zLNmqASRpzfdm8d79hJS+w==
2685
   resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
2687
   resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02"
2686
   integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==
2688
   integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==
2687
 
2689
 
2688
-ip-regex@^2.1.0:
2689
-  version "2.1.0"
2690
-  resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
2691
-  integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
2692
-
2693
 is-accessor-descriptor@^0.1.6:
2690
 is-accessor-descriptor@^0.1.6:
2694
   version "0.1.6"
2691
   version "0.1.6"
2695
   resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
2692
   resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
2973
     once "^1.4.0"
2970
     once "^1.4.0"
2974
 
2971
 
2975
 istanbul-api@^2.0.8:
2972
 istanbul-api@^2.0.8:
2976
-  version "2.1.0"
2977
-  resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.0.tgz#37ab0c2c3e83065462f5254b94749d6157846c4e"
2978
-  integrity sha512-+Ygg4t1StoiNlBGc6x0f8q/Bv26FbZqP/+jegzfNpU7Q8o+4ZRoJxJPhBkgE/UonpAjtxnE4zCZIyJX+MwLRMQ==
2973
+  version "2.1.1"
2974
+  resolved "https://registry.yarnpkg.com/istanbul-api/-/istanbul-api-2.1.1.tgz#194b773f6d9cbc99a9258446848b0f988951c4d0"
2975
+  integrity sha512-kVmYrehiwyeBAk/wE71tW6emzLiHGjYIiDrc8sfyty4F8M02/lrgXSm+R1kXysmF20zArvmZXjlE/mg24TVPJw==
2979
   dependencies:
2976
   dependencies:
2980
     async "^2.6.1"
2977
     async "^2.6.1"
2981
     compare-versions "^3.2.1"
2978
     compare-versions "^3.2.1"
2985
     istanbul-lib-instrument "^3.1.0"
2982
     istanbul-lib-instrument "^3.1.0"
2986
     istanbul-lib-report "^2.0.4"
2983
     istanbul-lib-report "^2.0.4"
2987
     istanbul-lib-source-maps "^3.0.2"
2984
     istanbul-lib-source-maps "^3.0.2"
2988
-    istanbul-reports "^2.1.0"
2985
+    istanbul-reports "^2.1.1"
2989
     js-yaml "^3.12.0"
2986
     js-yaml "^3.12.0"
2990
     make-dir "^1.3.0"
2987
     make-dir "^1.3.0"
2991
     minimatch "^3.0.4"
2988
     minimatch "^3.0.4"
3089
   dependencies:
3086
   dependencies:
3090
     handlebars "^4.0.3"
3087
     handlebars "^4.0.3"
3091
 
3088
 
3092
-istanbul-reports@^2.1.0:
3093
-  version "2.1.0"
3094
-  resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.1.0.tgz#87b8b55cd1901ba1748964c98ddd8900ce306d59"
3095
-  integrity sha512-azQdSX+dtTtkQEfqq20ICxWi6eOHXyHIgMFw1VOOVi8iIPWeCWRgCyFh/CsBKIhcgskMI8ExXmU7rjXTRCIJ+A==
3089
+istanbul-reports@^2.1.1:
3090
+  version "2.1.1"
3091
+  resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-2.1.1.tgz#72ef16b4ecb9a4a7bd0e2001e00f95d1eec8afa9"
3092
+  integrity sha512-FzNahnidyEPBCI0HcufJoSEoKykesRlFcSzQqjH9x0+LC8tnnE/p/90PBLu8iZTxr8yYZNyTtiAujUqyN+CIxw==
3096
   dependencies:
3093
   dependencies:
3097
-    handlebars "^4.0.11"
3094
+    handlebars "^4.1.0"
3098
 
3095
 
3099
 jest-changed-files@^23.4.2:
3096
 jest-changed-files@^23.4.2:
3100
   version "23.4.2"
3097
   version "23.4.2"
3789
   integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
3786
   integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
3790
 
3787
 
3791
 js-yaml@^3.12.0, js-yaml@^3.7.0, js-yaml@^3.9.0:
3788
 js-yaml@^3.12.0, js-yaml@^3.7.0, js-yaml@^3.9.0:
3792
-  version "3.12.1"
3793
-  resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600"
3794
-  integrity sha512-um46hB9wNOKlwkHgiuyEVAybXBjwFUV0Z/RaHJblRd9DXltue9FTYvzCr9ErQrK9Adz5MU4gHWVaNUfdmrC8qA==
3789
+  version "3.12.2"
3790
+  resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.2.tgz#ef1d067c5a9d9cb65bd72f285b5d8105c77f14fc"
3791
+  integrity sha512-QHn/Lh/7HhZ/Twc7vJYQTkjuCa0kaCcDcjK5Zlk2rvnUpy7DxMJ23+Jc2dcyvltwQVg1nygAVlB2oRDFHoRS5Q==
3795
   dependencies:
3792
   dependencies:
3796
     argparse "^1.0.7"
3793
     argparse "^1.0.7"
3797
     esprima "^4.0.0"
3794
     esprima "^4.0.0"
4034
     p-locate "^3.0.0"
4031
     p-locate "^3.0.0"
4035
     path-exists "^3.0.0"
4032
     path-exists "^3.0.0"
4036
 
4033
 
4034
+lodash.get@^4.4.2:
4035
+  version "4.4.2"
4036
+  resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
4037
+  integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=
4038
+
4037
 lodash.pad@^4.1.0:
4039
 lodash.pad@^4.1.0:
4038
   version "4.5.1"
4040
   version "4.5.1"
4039
   resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70"
4041
   resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70"
4059
   resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
4061
   resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
4060
   integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=
4062
   integrity sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ=
4061
 
4063
 
4062
-lodash@^4.13.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.6.1:
4064
+lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0, lodash@^4.6.1:
4063
   version "4.17.11"
4065
   version "4.17.11"
4064
   resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
4066
   resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
4065
   integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
4067
   integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
4409
     snapdragon "^0.8.1"
4411
     snapdragon "^0.8.1"
4410
     to-regex "^3.0.2"
4412
     to-regex "^3.0.2"
4411
 
4413
 
4412
-"mime-db@>= 1.36.0 < 2":
4414
+"mime-db@>= 1.38.0 < 2", mime-db@~1.38.0:
4413
   version "1.38.0"
4415
   version "1.38.0"
4414
   resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad"
4416
   resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad"
4415
   integrity sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==
4417
   integrity sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg==
4419
   resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.23.0.tgz#a31b4070adaea27d732ea333740a64d0ec9a6659"
4421
   resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.23.0.tgz#a31b4070adaea27d732ea333740a64d0ec9a6659"
4420
   integrity sha1-oxtAcK2uon1zLqMzdApk0OyaZlk=
4422
   integrity sha1-oxtAcK2uon1zLqMzdApk0OyaZlk=
4421
 
4423
 
4422
-mime-db@~1.37.0:
4423
-  version "1.37.0"
4424
-  resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8"
4425
-  integrity sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg==
4426
-
4427
 mime-types@2.1.11:
4424
 mime-types@2.1.11:
4428
   version "2.1.11"
4425
   version "2.1.11"
4429
   resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.11.tgz#c259c471bda808a85d6cd193b430a5fae4473b3c"
4426
   resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.11.tgz#c259c471bda808a85d6cd193b430a5fae4473b3c"
4432
     mime-db "~1.23.0"
4429
     mime-db "~1.23.0"
4433
 
4430
 
4434
 mime-types@^2.1.12, mime-types@~2.1.18, mime-types@~2.1.19:
4431
 mime-types@^2.1.12, mime-types@~2.1.18, mime-types@~2.1.19:
4435
-  version "2.1.21"
4436
-  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96"
4437
-  integrity sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==
4432
+  version "2.1.22"
4433
+  resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd"
4434
+  integrity sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==
4438
   dependencies:
4435
   dependencies:
4439
-    mime-db "~1.37.0"
4436
+    mime-db "~1.38.0"
4440
 
4437
 
4441
 mime@1.4.1:
4438
 mime@1.4.1:
4442
   version "1.4.1"
4439
   version "1.4.1"
4665
   integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==
4662
   integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g==
4666
 
4663
 
4667
 npm-packlist@^1.1.6:
4664
 npm-packlist@^1.1.6:
4668
-  version "1.3.0"
4669
-  resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.3.0.tgz#7f01e8e44408341379ca98cfd756e7b29bd2626c"
4670
-  integrity sha512-qPBc6CnxEzpOcc4bjoIBJbYdy0D/LFFPUdxvfwor4/w3vxeE0h6TiOVurCEPpQ6trjN77u/ShyfeJGsbAfB3dA==
4665
+  version "1.4.1"
4666
+  resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc"
4667
+  integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw==
4671
   dependencies:
4668
   dependencies:
4672
     ignore-walk "^3.0.1"
4669
     ignore-walk "^3.0.1"
4673
     npm-bundled "^1.0.1"
4670
     npm-bundled "^1.0.1"
4709
   integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
4706
   integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
4710
 
4707
 
4711
 nwsapi@^2.0.7:
4708
 nwsapi@^2.0.7:
4712
-  version "2.1.0"
4713
-  resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.0.tgz#781065940aed90d9bb01ca5d0ce0fcf81c32712f"
4714
-  integrity sha512-ZG3bLAvdHmhIjaQ/Db1qvBxsGvFMLIRpQszyqbg31VJ53UP++uZX1/gf3Ut96pdwN9AuDwlMqIYLm0UPCdUeHg==
4709
+  version "2.1.1"
4710
+  resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.1.tgz#08d6d75e69fd791bdea31507ffafe8c843b67e9c"
4711
+  integrity sha512-T5GaA1J/d34AC8mkrFD2O0DR17kwJ702ZOtJOsS8RpbsQZVOC2/xYFb1i/cw+xdM54JIlMuojjDOYct8GIWtwg==
4715
 
4712
 
4716
 oauth-sign@~0.9.0:
4713
 oauth-sign@~0.9.0:
4717
   version "0.9.0"
4714
   version "0.9.0"
4775
     ee-first "1.1.1"
4772
     ee-first "1.1.1"
4776
 
4773
 
4777
 on-headers@~1.0.1:
4774
 on-headers@~1.0.1:
4778
-  version "1.0.1"
4779
-  resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.1.tgz#928f5d0f470d49342651ea6794b0857c100693f7"
4780
-  integrity sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c=
4775
+  version "1.0.2"
4776
+  resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
4777
+  integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
4781
 
4778
 
4782
 once@^1.3.0, once@^1.3.1, once@^1.4.0:
4779
 once@^1.3.0, once@^1.3.1, once@^1.4.0:
4783
   version "1.4.0"
4780
   version "1.4.0"
5049
   integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
5046
   integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
5050
 
5047
 
5051
 pirates@^4.0.0:
5048
 pirates@^4.0.0:
5052
-  version "4.0.0"
5053
-  resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.0.tgz#850b18781b4ac6ec58a43c9ed9ec5fe6796addbd"
5054
-  integrity sha512-8t5BsXy1LUIjn3WWOlOuFDuKswhQb/tkak641lvBgmPOBUQHXveORtlMCp6OdPV1dtuTaEahKA8VNz6uLfKBtA==
5049
+  version "4.0.1"
5050
+  resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
5051
+  integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==
5055
   dependencies:
5052
   dependencies:
5056
     node-modules-regexp "^1.0.0"
5053
     node-modules-regexp "^1.0.0"
5057
 
5054
 
5173
     sisteransi "^0.1.1"
5170
     sisteransi "^0.1.1"
5174
 
5171
 
5175
 prompts@^2.0.1:
5172
 prompts@^2.0.1:
5176
-  version "2.0.2"
5177
-  resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.2.tgz#094119b0b0a553ec652908b583205b9867630154"
5178
-  integrity sha512-Pc/c53d2WZHJWZr78/BhZ5eHsdQtltbyBjHoA4T0cs/4yKJqCcoOHrq2SNKwtspVE0C+ebqAR5u0/mXwrHaADQ==
5173
+  version "2.0.3"
5174
+  resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.0.3.tgz#c5ccb324010b2e8f74752aadceeb57134c1d2522"
5175
+  integrity sha512-H8oWEoRZpybm6NV4to9/1limhttEo13xK62pNvn2JzY0MA03p7s0OjtmhXyon3uJmxiJJVSuUwEJFFssI3eBiQ==
5179
   dependencies:
5176
   dependencies:
5180
     kleur "^3.0.2"
5177
     kleur "^3.0.2"
5181
     sisteransi "^1.0.0"
5178
     sisteransi "^1.0.0"
5265
     ws "^3.3.1"
5262
     ws "^3.3.1"
5266
 
5263
 
5267
 react-is@^16.6.3, react-is@^16.8.1:
5264
 react-is@^16.6.3, react-is@^16.8.1:
5268
-  version "16.8.1"
5269
-  resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.1.tgz#a80141e246eb894824fb4f2901c0c50ef31d4cdb"
5270
-  integrity sha512-ioMCzVDWvCvKD8eeT+iukyWrBGrA3DiFYkXfBsVYIRdaREZuBjENG+KjrikavCLasozqRWTwFUagU/O4vPpRMA==
5265
+  version "16.8.3"
5266
+  resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.3.tgz#4ad8b029c2a718fc0cfc746c8d4e1b7221e5387d"
5267
+  integrity sha512-Y4rC1ZJmsxxkkPuMLwvKvlL1Zfpbcu+Bf4ZigkHup3v9EfdYhAlWAaVyA19olXq2o2mGn0w+dFKvk3pVVlYcIA==
5271
 
5268
 
5272
 "react-native-agora@file:../..":
5269
 "react-native-agora@file:../..":
5273
-  version "2.3.3"
5270
+  version "2.3.3-alpha.5"
5274
   dependencies:
5271
   dependencies:
5275
     tslib "^1.9.3"
5272
     tslib "^1.9.3"
5276
 
5273
 
5464
   resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de"
5461
   resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz#fa1a71544764c036f8c49b13a08b2594c9f8a0de"
5465
   integrity sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==
5462
   integrity sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==
5466
 
5463
 
5467
-regenerator-transform@^0.13.3:
5468
-  version "0.13.3"
5469
-  resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.3.tgz#264bd9ff38a8ce24b06e0636496b2c856b57bcbb"
5470
-  integrity sha512-5ipTrZFSq5vU2YoGoww4uaRVAK4wyYC4TSICibbfEPOruUu8FFP7ErV0BjmbIOEpn3O/k9na9UEdYR/3m7N6uA==
5464
+regenerator-transform@^0.13.4:
5465
+  version "0.13.4"
5466
+  resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.4.tgz#18f6763cf1382c69c36df76c6ce122cc694284fb"
5467
+  integrity sha512-T0QMBjK3J0MtxjPmdIMXm72Wvj2Abb0Bd4HADdfijwMdoIsyQZ6fWC7kDFhk2YinBBEMZDL7Y7wh0J1sGx3S4A==
5471
   dependencies:
5468
   dependencies:
5472
     private "^0.1.6"
5469
     private "^0.1.6"
5473
 
5470
 
5532
   dependencies:
5529
   dependencies:
5533
     is-finite "^1.0.0"
5530
     is-finite "^1.0.0"
5534
 
5531
 
5535
-request-promise-core@1.1.1:
5536
-  version "1.1.1"
5537
-  resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6"
5538
-  integrity sha1-Pu4AssWqgyOc+wTFcA2jb4HNCLY=
5532
+request-promise-core@1.1.2:
5533
+  version "1.1.2"
5534
+  resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346"
5535
+  integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==
5539
   dependencies:
5536
   dependencies:
5540
-    lodash "^4.13.1"
5537
+    lodash "^4.17.11"
5541
 
5538
 
5542
 request-promise-native@^1.0.5:
5539
 request-promise-native@^1.0.5:
5543
-  version "1.0.5"
5544
-  resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.5.tgz#5281770f68e0c9719e5163fd3fab482215f4fda5"
5545
-  integrity sha1-UoF3D2jgyXGeUWP9P6tIIhX0/aU=
5540
+  version "1.0.7"
5541
+  resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59"
5542
+  integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w==
5546
   dependencies:
5543
   dependencies:
5547
-    request-promise-core "1.1.1"
5548
-    stealthy-require "^1.1.0"
5549
-    tough-cookie ">=2.3.3"
5544
+    request-promise-core "1.1.2"
5545
+    stealthy-require "^1.1.1"
5546
+    tough-cookie "^2.3.3"
5550
 
5547
 
5551
 request@^2.87.0:
5548
 request@^2.87.0:
5552
   version "2.88.0"
5549
   version "2.88.0"
6035
   resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
6032
   resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.4.0.tgz#bb73d446da2796106efcc1b601a253d6c46bd087"
6036
   integrity sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==
6033
   integrity sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==
6037
 
6034
 
6038
-stealthy-require@^1.1.0:
6035
+stealthy-require@^1.1.1:
6039
   version "1.1.1"
6036
   version "1.1.1"
6040
   resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
6037
   resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
6041
   integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
6038
   integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
6263
     regex-not "^1.0.2"
6260
     regex-not "^1.0.2"
6264
     safe-regex "^1.1.0"
6261
     safe-regex "^1.1.0"
6265
 
6262
 
6266
-tough-cookie@>=2.3.3:
6267
-  version "3.0.1"
6268
-  resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2"
6269
-  integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==
6270
-  dependencies:
6271
-    ip-regex "^2.1.0"
6272
-    psl "^1.1.28"
6273
-    punycode "^2.1.1"
6274
-
6275
-tough-cookie@^2.3.4:
6263
+tough-cookie@^2.3.3, tough-cookie@^2.3.4:
6276
   version "2.5.0"
6264
   version "2.5.0"
6277
   resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
6265
   resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
6278
   integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
6266
   integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==