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
react-native link react-native-local-notifications
21
21
```
22
+
Keep in mind that the link step only links the project in the native projects, more steps have to be done for both platforms, which are described in the Android and iOS section below... please verify manually that the link command successfully linked the libray to your project!
22
23
23
24
Or manual: add the latest version as dependeny to your package.json.
24
25
@@ -35,9 +36,9 @@ Or manual: add the latest version as dependeny to your package.json.
35
36
```
36
37
37
38
#### iOS
38
-
* Add RNLocalNotifications.xcoderproj into your project in the Libraries folder.
39
-
* Add the .a file on the General tab of your target under Linked Frameworks And Libraries
40
-
* Add the .a file on the Build Phases tab of your target under Link Binary With Libraries
39
+
*{auto-link} Add RNLocalNotifications.xcoderproj into your project in the Libraries folder.
40
+
*{auto-link}Add the .a file on the General tab of your target under Linked Frameworks And Libraries
41
+
*{auto-link}Add the .a file on the Build Phases tab of your target under Link Binary With Libraries
41
42
* In the AppDelegate.m file of your xcode project add:
@@ -95,6 +96,9 @@ Or manual: add the latest version as dependeny to your package.json.
95
96
}
96
97
...
97
98
```
99
+
* Aside from the big icon, for which the ic_launcher icon in mipmap folder is used by default, you also need a small transparent with white foreground icon which will be displayed in the status bar.
100
+
See Android developer specifications for correct sizes, by default 'notification_small' from the drawable folder is used...
0 commit comments