Quellcode durchsuchen

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

Alexandru Lazar vor 8 Jahren
Ursprung
Commit
49dfb76a5a
3 geänderte Dateien mit 5 neuen und 5 gelöschten Zeilen
  1. 1 1
      RCTConvert+RNPStatus.h
  2. 1 1
      ReactNativePermissions.h
  3. 3 3
      ReactNativePermissions.m

+ 1 - 1
RCTConvert+RNPStatus.h

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

+ 1 - 1
ReactNativePermissions.h

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

+ 3 - 3
ReactNativePermissions.m

@@ -10,9 +10,9 @@
 
 #import "ReactNativePermissions.h"
 
-#import <React/RCTBridge.h>
-#import <React/RCTConvert.h>
-#import <React/RCTEventDispatcher.h>
+#import "RCTBridge.h"
+#import "RCTConvert.h"
+#import "RCTEventDispatcher.h"
 
 #import "RNPLocation.h"
 #import "RNPBluetooth.h"