You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,36 @@ React Native module to support Azure Notification Hub push notifications on Andr
13
13
-[Code of Conduct](CODE_OF_CONDUCT.md)
14
14
-[License](#license)
15
15
16
+
# Prerequisites
17
+
18
+
## Android
19
+
20
+
The documentation that follows assumes you have generated a React Native Android project using the `react-native-cli`, i.e.:
21
+
22
+
```
23
+
react-native init myapp
24
+
```
25
+
26
+
In addition to the standard React Native requirements, you will also need to install the following Android SDK components with your prefered SDK management tools:
27
+
* Google Play services
28
+
29
+
## Windows
30
+
31
+
The documentation that follows assumes you have generated a React Native Windows project using the `react-native-cli` and `rnpm-plugin-windows`, i.e.:
32
+
33
+
```
34
+
react-native init myapp
35
+
cd myapp
36
+
npm i --save-dev rnpm-plugin-windows
37
+
react-native windows
38
+
```
39
+
40
+
It also assumes you have Visual Studio 2015 installed ([Visual Studio Community](https://www.visualstudio.com/en-us/products/visual-studio-community-vs.aspx) is fine).
0 commit comments