Commit 8024bb21 authored by Gustavo Perdomo's avatar Gustavo Perdomo

Merge remote-tracking branch 'upstream/master'

parents da0c4e53 e4cd4b91
language: node_js language: node_js
node_js: node_js:
- "6" - "7"
@import UIKit; @import UIKit;
#import "RCTBridgeModule.h" #if __has_include(<React/RCTBridgeModule.h>)
#import <React/RCTBridgeModule.h>
#else
#import "RCTBridgeModule.h"
#endif
#import <PushKit/PushKit.h> #import <PushKit/PushKit.h>
@interface RNNotifications : NSObject <RCTBridgeModule> @interface RNNotifications : NSObject <RCTBridgeModule>
......
#import <UIKit/UIKit.h> #import <UIKit/UIKit.h>
#import <PushKit/PushKit.h> #import <PushKit/PushKit.h>
#import "RCTBridge.h" #if __has_include(<React/RCTBridge.h>)
#import "RCTEventDispatcher.h" #import <React/RCTBridge.h>
#import "RNNotifications.h" #import <React/RCTEventDispatcher.h>
#import "RCTConvert.h" #import "RNNotifications.h"
#import "RCTUtils.h" #import <React/RCTConvert.h>
#import <React/RCTUtils.h>
#else
#import "RCTBridge.h"
#import "RCTEventDispatcher.h"
#import "RNNotifications.h"
#import "RCTConvert.h"
#import "RCTUtils.h"
#endif
#import "RNNotificationsBridgeQueue.h" #import "RNNotificationsBridgeQueue.h"
NSString* const RNNotificationCreateAction = @"CREATE"; NSString* const RNNotificationCreateAction = @"CREATE";
......
{ {
"name": "react-native-notifications", "name": "react-native-notifications",
"version": "1.1.8", "version": "1.1.9",
"description": "Advanced Push Notifications (Silent, interactive notifications) for iOS & Android", "description": "Advanced Push Notifications (Silent, interactive notifications) for iOS & Android",
"author": "Lidan Hifi <lidan.hifi@gmail.com>", "author": "Lidan Hifi <lidan.hifi@gmail.com>",
"license": "MIT", "license": "MIT",
......
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