From bb25bc40ece0595fba99d56197419eac4ef1f80b Mon Sep 17 00:00:00 2001 From: Lidan Date: Thu, 3 Mar 2016 09:10:09 +0200 Subject: [PATCH 1/2] Fix typo in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b4d621..dadfaff 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ The basic workflow is: # Install ### rnpm (preferred) -`rnpm install react-native-ios-push-notification-actions` +`rnpm install react-native-ios-notification-actions` ### Manual -1. `npm install react-native-ios-push-notification-actions` +1. `npm install react-native-ios-notification-actions` 2. Drag `./RNNotificationActions/RNNotificationActions.xcodeproj` into your project. 3. Add `libRNNotificationActions.a` to your `Link Binary With Libraries` build phase From b9351652823fb09d221ebb8c6ee5ef4d884373a8 Mon Sep 17 00:00:00 2001 From: Lidan Date: Thu, 3 Mar 2016 11:32:48 +0200 Subject: [PATCH 2/2] Update README: add RNNotificationActions to header search paths --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dadfaff..9879ded 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,8 @@ The basic workflow is: ### Manual 1. `npm install react-native-ios-notification-actions` 2. Drag `./RNNotificationActions/RNNotificationActions.xcodeproj` into your project. -3. Add `libRNNotificationActions.a` to your `Link Binary With Libraries` build phase +3. Add `libRNNotificationActions.a` to your `Link Binary With Libraries` build phase. +4. Add the following to you Header Search Paths: `$(SRCROOT)/../node_modules/react-native-ios-notification-actions/RNNotificationActions`, set the search to recursive. # Getting Started 1. Follow the instructions [here](https://facebook.github.io/react-native/docs/pushnotificationios.html) to set up push notifications in your app.