UNPKG

898 BMarkdownView Raw
1# React Native Clipboard (Windows)
2
3React Native Clipboard is currently maintained for React Native Windows (RNW) >= 0.62.
4
5# Local Development Setup (RNW >= 0.62)
6
7In order to work on _Clipboard_, you'll need to install the [Windows Development Dependencies](https://aka.ms/rnw-deps).
8
9In addition, `clipboard` targets React Native 0.61.5 and doesn't include React Native Windows as a dependency. So in order to build `Clipboard` locally you'll need to temporarily upgrade the development dependencies:
10
11## RNW >= 0.63
12
13```
14yarn upgrade react-native@^0.63
15yarn add react-native-windows@^0.63 --dev
16```
17
18Now you should be able to open `windows.sln` in Visual Studio and build the project.
19
20## RNW 0.62
21
22```
23yarn upgrade react-native@^0.62
24yarn add react-native-windows@^0.62 --dev
25```
26
27Now you should be able to open `windows.sln` in Visual Studio and build the project.