Browse Source

[fix]: fix react-native dependencies to support earlier versions

Alexandru Lazar 7 years ago
parent
commit
49dfb76a5a
3 changed files with 5 additions and 5 deletions
  1. 1
    1
      RCTConvert+RNPStatus.h
  2. 1
    1
      ReactNativePermissions.h
  3. 3
    3
      ReactNativePermissions.m

+ 1
- 1
RCTConvert+RNPStatus.h View File

6
 //  Copyright © 2016 Yonah Forst. All rights reserved.
6
 //  Copyright © 2016 Yonah Forst. All rights reserved.
7
 //
7
 //
8
 
8
 
9
-#import <React/RCTConvert.h>
9
+#import "RCTConvert.h"
10
 
10
 
11
 static NSString* RNPStatusUndetermined = @"undetermined";
11
 static NSString* RNPStatusUndetermined = @"undetermined";
12
 static NSString* RNPStatusDenied = @"denied";
12
 static NSString* RNPStatusDenied = @"denied";

+ 1
- 1
ReactNativePermissions.h View File

5
 //  Created by Yonah Forst on 18/02/16.
5
 //  Created by Yonah Forst on 18/02/16.
6
 //  Copyright © 2016 Yonah Forst. All rights reserved.
6
 //  Copyright © 2016 Yonah Forst. All rights reserved.
7
 //
7
 //
8
-#import <React/RCTBridgeModule.h>
8
+#import "RCTBridgeModule.h"
9
 
9
 
10
 #import <Foundation/Foundation.h>
10
 #import <Foundation/Foundation.h>
11
 
11
 

+ 3
- 3
ReactNativePermissions.m View File

10
 
10
 
11
 #import "ReactNativePermissions.h"
11
 #import "ReactNativePermissions.h"
12
 
12
 
13
-#import <React/RCTBridge.h>
14
-#import <React/RCTConvert.h>
15
-#import <React/RCTEventDispatcher.h>
13
+#import "RCTBridge.h"
14
+#import "RCTConvert.h"
15
+#import "RCTEventDispatcher.h"
16
 
16
 
17
 #import "RNPLocation.h"
17
 #import "RNPLocation.h"
18
 #import "RNPBluetooth.h"
18
 #import "RNPBluetooth.h"