react-native-windows 0.71.27 → 0.71.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
-->
|
|
11
11
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
12
12
|
<PropertyGroup>
|
|
13
|
-
<ReactNativeWindowsVersion>0.71.
|
|
13
|
+
<ReactNativeWindowsVersion>0.71.28</ReactNativeWindowsVersion>
|
|
14
14
|
<ReactNativeWindowsMajor>0</ReactNativeWindowsMajor>
|
|
15
15
|
<ReactNativeWindowsMinor>71</ReactNativeWindowsMinor>
|
|
16
|
-
<ReactNativeWindowsPatch>
|
|
16
|
+
<ReactNativeWindowsPatch>28</ReactNativeWindowsPatch>
|
|
17
17
|
<ReactNativeWindowsCanary>false</ReactNativeWindowsCanary>
|
|
18
|
-
<ReactNativeWindowsCommitId>
|
|
18
|
+
<ReactNativeWindowsCommitId>d543e65183786f8d7c01643b6d8c6202baaac145</ReactNativeWindowsCommitId>
|
|
19
19
|
</PropertyGroup>
|
|
20
20
|
</Project>
|
package/Shared/OInstance.cpp
CHANGED
|
@@ -570,17 +570,20 @@ std::vector<std::unique_ptr<NativeModule>> InstanceImpl::GetDefaultNativeModules
|
|
|
570
570
|
},
|
|
571
571
|
nativeQueue));
|
|
572
572
|
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
573
|
+
// Use in case the host app provides its a non-Blob-compatilbe HTTP module.
|
|
574
|
+
if (!Microsoft::React::GetRuntimeOptionBool("Blob.DisableModule")) {
|
|
575
|
+
modules.push_back(std::make_unique<CxxNativeModule>(
|
|
576
|
+
m_innerInstance,
|
|
577
|
+
Microsoft::React::GetBlobModuleName(),
|
|
578
|
+
[transitionalProps]() { return Microsoft::React::CreateBlobModule(transitionalProps); },
|
|
579
|
+
nativeQueue));
|
|
578
580
|
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
581
|
+
modules.push_back(std::make_unique<CxxNativeModule>(
|
|
582
|
+
m_innerInstance,
|
|
583
|
+
Microsoft::React::GetFileReaderModuleName(),
|
|
584
|
+
[transitionalProps]() { return Microsoft::React::CreateFileReaderModule(transitionalProps); },
|
|
585
|
+
nativeQueue));
|
|
586
|
+
}
|
|
584
587
|
|
|
585
588
|
modules.push_back(std::make_unique<CxxNativeModule>(
|
|
586
589
|
m_innerInstance,
|