Commit 81b0c20f authored by Mehdi Achour's avatar Mehdi Achour

docs: update react-native-windows instructions

parent cd1c6a83
...@@ -167,19 +167,16 @@ include ':app' ...@@ -167,19 +167,16 @@ include ':app'
* Navigate to `./<app-name>/node_modules/react-native-device-info/windows/RNDeviceInfo` and add `RNDeviceInfo.csproj` * Navigate to `./<app-name>/node_modules/react-native-device-info/windows/RNDeviceInfo` and add `RNDeviceInfo.csproj`
* this time right click on your React Native Windows app under your solutions directory and click Add > Reference... * this time right click on your React Native Windows app under your solutions directory and click Add > Reference...
* check the `RNDeviceInfo` you just added and press ok * check the `RNDeviceInfo` you just added and press ok
* open up `MainPage.cs` for your app and edit the file like so: * open up `MainReactNativeHost.cs` for your app and edit the file like so:
```diff ```diff
+ using RNDeviceInfo; + using RNDeviceInfo;
...... ......
get protected override List<IReactPackage> Packages => new List<IReactPackage>
{ {
return new List<IReactPackage> new MainReactPackage(),
{ + new RNDeviceInfoPackage(),
new MainReactPackage(), };
+ new RNDeviceInfoPackage(),
};
}
``` ```
(Thanks to @josephan for writing the instructions) (Thanks to @josephan for writing the instructions)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment