react-native-config 1.5.5 → 1.5.6
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.
- package/README.md +6 -0
- package/package.json +1 -1
- package/windows/RNCConfig/RNCConfig.vcxproj +2 -2
package/README.md
CHANGED
|
@@ -116,7 +116,13 @@ if cocoapods are used in the project then pod has to be installed as well:
|
|
|
116
116
|
Add `PackageProviders().Append(winrt::RNCConfig::ReactPackageProvider());` before `InitializeComponent();`.
|
|
117
117
|
|
|
118
118
|
### Extra step for Android
|
|
119
|
+
#### Using RN-Integrate
|
|
120
|
+
Apply extra steps automatically:
|
|
121
|
+
```sh
|
|
122
|
+
npx react-native-integrate react-native-config
|
|
123
|
+
```
|
|
119
124
|
|
|
125
|
+
#### Manual
|
|
120
126
|
You'll also need to manually apply a plugin to your app, from `android/app/build.gradle`:
|
|
121
127
|
|
|
122
128
|
```
|
package/package.json
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
<AppContainerApplication>true</AppContainerApplication>
|
|
17
17
|
<ApplicationType>Windows Store</ApplicationType>
|
|
18
18
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
|
19
|
-
<WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0
|
|
20
|
-
<WindowsTargetPlatformMinVersion>10.0.
|
|
19
|
+
<WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0</WindowsTargetPlatformVersion>
|
|
20
|
+
<WindowsTargetPlatformMinVersion>10.0.17763.0</WindowsTargetPlatformMinVersion>
|
|
21
21
|
</PropertyGroup>
|
|
22
22
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
23
23
|
<PropertyGroup Label="ReactNativeWindowsProps">
|