Browse Source

react-native 0.40.0

master
Lyubomir Marinov 7 years ago
parent
commit
ae726cfdc0

+ 1
- 0
.gitattributes View File

1
 *.bundle.js -text -diff
1
 *.bundle.js -text -diff
2
+*.pbxproj -text
2
 lib-jitsi-meet.js -text -diff
3
 lib-jitsi-meet.js -text -diff

+ 15
- 3
.gitignore View File

36
 *.xcuserstate
36
 *.xcuserstate
37
 project.xcworkspace
37
 project.xcworkspace
38
 
38
 
39
-# Android/IJ
39
+# Android/IntelliJ
40
 #
40
 #
41
-*.iml
41
+build/
42
 .idea
42
 .idea
43
 .gradle
43
 .gradle
44
 local.properties
44
 local.properties
45
+*.iml
45
 
46
 
46
 # node.js
47
 # node.js
47
 #
48
 #
53
 buck-out/
54
 buck-out/
54
 \.buckd/
55
 \.buckd/
55
 android/app/libs
56
 android/app/libs
56
-android/keystores/debug.keystore
57
+*.keystore
58
+
59
+# fastlane
60
+#
61
+# It is recommended to not store the screenshots in the git repo. Instead, use
62
+# fastlane to re-generate the screenshots whenever they are needed. For more
63
+# information about the recommended setup visit:
64
+# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
65
+#
66
+fastlane/report.xml
67
+fastlane/Preview.html
68
+fastlane/screenshots

+ 3
- 3
android/app/build.gradle View File

144
     compile project(':react-native-webrtc')
144
     compile project(':react-native-webrtc')
145
     compile fileTree(dir: 'libs', include: ['*.jar'])
145
     compile fileTree(dir: 'libs', include: ['*.jar'])
146
     compile 'com.android.support:appcompat-v7:23.0.1'
146
     compile 'com.android.support:appcompat-v7:23.0.1'
147
-    compile 'com.facebook.react:react-native:+'
147
+    compile 'com.facebook.react:react-native:+'  // From node_modules
148
 }
148
 }
149
 
149
 
150
 apply from: '../../node_modules/react-native-vector-icons/fonts.gradle'
150
 apply from: '../../node_modules/react-native-vector-icons/fonts.gradle'
152
 // Run this once to be able to run the application with BUCK
152
 // Run this once to be able to run the application with BUCK
153
 // puts all compile dependencies into folder libs for BUCK to use
153
 // puts all compile dependencies into folder libs for BUCK to use
154
 task copyDownloadableDepsToLibs(type: Copy) {
154
 task copyDownloadableDepsToLibs(type: Copy) {
155
-  from configurations.compile
156
-  into 'libs'
155
+    from configurations.compile
156
+    into 'libs'
157
 }
157
 }

+ 3
- 0
android/app/src/main/java/org/jitsi/meet/MainApplication.java View File

5
 import com.facebook.react.ReactApplication;
5
 import com.facebook.react.ReactApplication;
6
 import com.facebook.react.ReactNativeHost;
6
 import com.facebook.react.ReactNativeHost;
7
 import com.facebook.react.ReactPackage;
7
 import com.facebook.react.ReactPackage;
8
+import com.facebook.soloader.SoLoader;
8
 
9
 
9
 import java.util.Arrays;
10
 import java.util.Arrays;
10
 import java.util.List;
11
 import java.util.List;
48
     public void onCreate() {
49
     public void onCreate() {
49
         super.onCreate();
50
         super.onCreate();
50
 
51
 
52
+        SoLoader.init(this, /* native exopackage */ false);
53
+
51
         if (!getReactNativeHost()
54
         if (!getReactNativeHost()
52
                 .getReactInstanceManager()
55
                 .getReactInstanceManager()
53
                     .getDevSupportManager()
56
                     .getDevSupportManager()

+ 135
- 0
ios/jitsi-meet-react.xcodeproj/project.pbxproj View File

24
 		146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
24
 		146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
25
 		2602576C1D0A7703001E3363 /* jitsi.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2602576B1D0A7703001E3363 /* jitsi.ttf */; };
25
 		2602576C1D0A7703001E3363 /* jitsi.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2602576B1D0A7703001E3363 /* jitsi.ttf */; };
26
 		3847F11906B4479A9162628F /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 821D8ABD506944B4BDBB069B /* libRNVectorIcons.a */; };
26
 		3847F11906B4479A9162628F /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 821D8ABD506944B4BDBB069B /* libRNVectorIcons.a */; };
27
+		5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
27
 		832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
28
 		832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
28
 		901FE90FA5744B5B94DCDC41 /* libKCKeepAwake.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0EA8C046B2BF46279796F07D /* libKCKeepAwake.a */; };
29
 		901FE90FA5744B5B94DCDC41 /* libKCKeepAwake.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0EA8C046B2BF46279796F07D /* libKCKeepAwake.a */; };
29
 		B30EF2311DC0ED7C00690F45 /* WebRTC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B30EF2301DC0ED7C00690F45 /* WebRTC.framework */; };
30
 		B30EF2311DC0ED7C00690F45 /* WebRTC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B30EF2301DC0ED7C00690F45 /* WebRTC.framework */; };
113
 			remoteGlobalIDString = 5DBEB1501B18CEA900B34395;
114
 			remoteGlobalIDString = 5DBEB1501B18CEA900B34395;
114
 			remoteInfo = RNVectorIcons;
115
 			remoteInfo = RNVectorIcons;
115
 		};
116
 		};
117
+		3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
118
+			isa = PBXContainerItemProxy;
119
+			containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
120
+			proxyType = 2;
121
+			remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
122
+			remoteInfo = yoga;
123
+		};
124
+		3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
125
+			isa = PBXContainerItemProxy;
126
+			containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
127
+			proxyType = 2;
128
+			remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
129
+			remoteInfo = "yoga-tvOS";
130
+		};
131
+		3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
132
+			isa = PBXContainerItemProxy;
133
+			containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
134
+			proxyType = 2;
135
+			remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
136
+			remoteInfo = cxxreact;
137
+		};
138
+		3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
139
+			isa = PBXContainerItemProxy;
140
+			containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
141
+			proxyType = 2;
142
+			remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
143
+			remoteInfo = "cxxreact-tvOS";
144
+		};
145
+		3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
146
+			isa = PBXContainerItemProxy;
147
+			containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
148
+			proxyType = 2;
149
+			remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
150
+			remoteInfo = jschelpers;
151
+		};
152
+		3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
153
+			isa = PBXContainerItemProxy;
154
+			containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
155
+			proxyType = 2;
156
+			remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
157
+			remoteInfo = "jschelpers-tvOS";
158
+		};
159
+		5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
160
+			isa = PBXContainerItemProxy;
161
+			containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
162
+			proxyType = 2;
163
+			remoteGlobalIDString = 134814201AA4EA6300B7C361;
164
+			remoteInfo = RCTAnimation;
165
+		};
166
+		5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
167
+			isa = PBXContainerItemProxy;
168
+			containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
169
+			proxyType = 2;
170
+			remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
171
+			remoteInfo = "RCTAnimation-tvOS";
172
+		};
116
 		78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
173
 		78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
117
 			isa = PBXContainerItemProxy;
174
 			isa = PBXContainerItemProxy;
118
 			containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
175
 			containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
221
 		22418656B14845609F953A42 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = "<group>"; };
278
 		22418656B14845609F953A42 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = "<group>"; };
222
 		2602576B1D0A7703001E3363 /* jitsi.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = jitsi.ttf; path = ../android/app/src/main/assets/fonts/jitsi.ttf; sourceTree = "<group>"; };
279
 		2602576B1D0A7703001E3363 /* jitsi.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = jitsi.ttf; path = ../android/app/src/main/assets/fonts/jitsi.ttf; sourceTree = "<group>"; };
223
 		5B09C20C78C74A548AAAC1FA /* KCKeepAwake.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = KCKeepAwake.xcodeproj; path = "../node_modules/react-native-keep-awake/ios/KCKeepAwake.xcodeproj"; sourceTree = "<group>"; };
280
 		5B09C20C78C74A548AAAC1FA /* KCKeepAwake.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = KCKeepAwake.xcodeproj; path = "../node_modules/react-native-keep-awake/ios/KCKeepAwake.xcodeproj"; sourceTree = "<group>"; };
281
+		5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
224
 		78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
282
 		78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
225
 		821D8ABD506944B4BDBB069B /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = "<group>"; };
283
 		821D8ABD506944B4BDBB069B /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = "<group>"; };
226
 		832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
284
 		832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
259
 				BF96438E1C34FBE100B0BBDF /* VideoToolbox.framework in Frameworks */,
317
 				BF96438E1C34FBE100B0BBDF /* VideoToolbox.framework in Frameworks */,
260
 				146834051AC3E58100842450 /* libReact.a in Frameworks */,
318
 				146834051AC3E58100842450 /* libReact.a in Frameworks */,
261
 				00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
319
 				00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
320
+				5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
262
 				00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
321
 				00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
263
 				00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
322
 				00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
264
 				133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
323
 				133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
364
 			isa = PBXGroup;
423
 			isa = PBXGroup;
365
 			children = (
424
 			children = (
366
 				146834041AC3E56700842450 /* libReact.a */,
425
 				146834041AC3E56700842450 /* libReact.a */,
426
+				3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
427
+				3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
428
+				3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
429
+				3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
430
+				3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
431
+				3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
367
 				B3BA19EF1DC6B37B00BCD481 /* libReact-tvOS.a */,
432
 				B3BA19EF1DC6B37B00BCD481 /* libReact-tvOS.a */,
368
 			);
433
 			);
369
 			name = Products;
434
 			name = Products;
377
 			name = Products;
442
 			name = Products;
378
 			sourceTree = "<group>";
443
 			sourceTree = "<group>";
379
 		};
444
 		};
445
+		5E91572E1DD0AC6500FF2AA8 /* Products */ = {
446
+			isa = PBXGroup;
447
+			children = (
448
+				5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
449
+				5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */,
450
+			);
451
+			name = Products;
452
+			sourceTree = "<group>";
453
+		};
380
 		6956B374CC3C453DB7B8E82D /* Resources */ = {
454
 		6956B374CC3C453DB7B8E82D /* Resources */ = {
381
 			isa = PBXGroup;
455
 			isa = PBXGroup;
382
 			children = (
456
 			children = (
403
 				BF9643911C34FBF100B0BBDF /* libsqlite3.tbd */,
477
 				BF9643911C34FBF100B0BBDF /* libsqlite3.tbd */,
404
 				BF9643931C34FBF900B0BBDF /* libstdc++.tbd */,
478
 				BF9643931C34FBF900B0BBDF /* libstdc++.tbd */,
405
 				00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
479
 				00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
480
+				5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
406
 				00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
481
 				00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
407
 				00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
482
 				00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
408
 				78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
483
 				78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
534
 					ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
609
 					ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
535
 					ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
610
 					ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
536
 				},
611
 				},
612
+				{
613
+					ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
614
+					ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
615
+				},
537
 				{
616
 				{
538
 					ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
617
 					ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
539
 					ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
618
 					ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
720
 			remoteRef = B3BA19EE1DC6B37B00BCD481 /* PBXContainerItemProxy */;
799
 			remoteRef = B3BA19EE1DC6B37B00BCD481 /* PBXContainerItemProxy */;
721
 			sourceTree = BUILT_PRODUCTS_DIR;
800
 			sourceTree = BUILT_PRODUCTS_DIR;
722
 		};
801
 		};
802
+		3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
803
+			isa = PBXReferenceProxy;
804
+			fileType = archive.ar;
805
+			path = libyoga.a;
806
+			remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
807
+			sourceTree = BUILT_PRODUCTS_DIR;
808
+		};
809
+		3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
810
+			isa = PBXReferenceProxy;
811
+			fileType = archive.ar;
812
+			path = libyoga.a;
813
+			remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
814
+			sourceTree = BUILT_PRODUCTS_DIR;
815
+		};
816
+		3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
817
+			isa = PBXReferenceProxy;
818
+			fileType = archive.ar;
819
+			path = libcxxreact.a;
820
+			remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
821
+			sourceTree = BUILT_PRODUCTS_DIR;
822
+		};
823
+		3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
824
+			isa = PBXReferenceProxy;
825
+			fileType = archive.ar;
826
+			path = libcxxreact.a;
827
+			remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
828
+			sourceTree = BUILT_PRODUCTS_DIR;
829
+		};
830
+		3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
831
+			isa = PBXReferenceProxy;
832
+			fileType = archive.ar;
833
+			path = libjschelpers.a;
834
+			remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
835
+			sourceTree = BUILT_PRODUCTS_DIR;
836
+		};
837
+		3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
838
+			isa = PBXReferenceProxy;
839
+			fileType = archive.ar;
840
+			path = libjschelpers.a;
841
+			remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
842
+			sourceTree = BUILT_PRODUCTS_DIR;
843
+		};
844
+		5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
845
+			isa = PBXReferenceProxy;
846
+			fileType = archive.ar;
847
+			path = libRCTAnimation.a;
848
+			remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
849
+			sourceTree = BUILT_PRODUCTS_DIR;
850
+		};
851
+		5E9157351DD0AC6500FF2AA8 /* libRCTAnimation-tvOS.a */ = {
852
+			isa = PBXReferenceProxy;
853
+			fileType = archive.ar;
854
+			path = "libRCTAnimation-tvOS.a";
855
+			remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
856
+			sourceTree = BUILT_PRODUCTS_DIR;
857
+		};
723
 		BFC745131CB829A700673F38 /* libRCTWebRTC.a */ = {
858
 		BFC745131CB829A700673F38 /* libRCTWebRTC.a */ = {
724
 			isa = PBXReferenceProxy;
859
 			isa = PBXReferenceProxy;
725
 			fileType = archive.ar;
860
 			fileType = archive.ar;

+ 15
- 1
ios/jitsi-meet-react.xcodeproj/xcshareddata/xcschemes/jitsi-meet-react.xcscheme View File

3
    LastUpgradeVersion = "0800"
3
    LastUpgradeVersion = "0800"
4
    version = "1.3">
4
    version = "1.3">
5
    <BuildAction
5
    <BuildAction
6
-      parallelizeBuildables = "YES"
6
+      parallelizeBuildables = "NO"
7
       buildImplicitDependencies = "YES">
7
       buildImplicitDependencies = "YES">
8
       <BuildActionEntries>
8
       <BuildActionEntries>
9
+         <BuildActionEntry
10
+            buildForTesting = "YES"
11
+            buildForRunning = "YES"
12
+            buildForProfiling = "YES"
13
+            buildForArchiving = "YES"
14
+            buildForAnalyzing = "YES">
15
+            <BuildableReference
16
+               BuildableIdentifier = "primary"
17
+               BlueprintIdentifier = "83CBBA2D1A601D0E00E9B192"
18
+               BuildableName = "libReact.a"
19
+               BlueprintName = "React"
20
+               ReferencedContainer = "container:../node_modules/react-native/React/React.xcodeproj">
21
+            </BuildableReference>
22
+         </BuildActionEntry>
9
          <BuildActionEntry
23
          <BuildActionEntry
10
             buildForTesting = "YES"
24
             buildForTesting = "YES"
11
             buildForRunning = "YES"
25
             buildForRunning = "YES"

+ 2
- 2
package.json View File

34
     "postis": "^2.2.0",
34
     "postis": "^2.2.0",
35
     "react": "15.4.2",
35
     "react": "15.4.2",
36
     "react-dom": "15.4.2",
36
     "react-dom": "15.4.2",
37
-    "react-native": "0.39.2",
37
+    "react-native": "0.40.0",
38
     "react-native-keep-awake": "^1.0.7",
38
     "react-native-keep-awake": "^1.0.7",
39
     "react-native-prompt": "^1.0.0",
39
     "react-native-prompt": "^1.0.0",
40
-    "react-native-vector-icons": "^3.0.0",
40
+    "react-native-vector-icons": "^4.0.0",
41
     "react-native-webrtc": "jitsi/react-native-webrtc",
41
     "react-native-webrtc": "jitsi/react-native-webrtc",
42
     "react-redux": "^5.0.2",
42
     "react-redux": "^5.0.2",
43
     "redux": "^3.5.2",
43
     "redux": "^3.5.2",

Loading…
Cancel
Save