forked from Ivasoft/mattermost-mobile
40 lines
1.4 KiB
Diff
40 lines
1.4 KiB
Diff
diff --git a/node_modules/react-native-passcode-status/ios/RNPasscodeStatus.h b/node_modules/react-native-passcode-status/ios/RNPasscodeStatus.h
|
|
index 95adfbb..0a83fd3 100644
|
|
--- a/node_modules/react-native-passcode-status/ios/RNPasscodeStatus.h
|
|
+++ b/node_modules/react-native-passcode-status/ios/RNPasscodeStatus.h
|
|
@@ -7,7 +7,7 @@
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
-#import <RCTBridgeModule.h>
|
|
+#import "RCTBridgeModule.h"
|
|
#import "UIDevice+PasscodeStatus.h"
|
|
#import "RCTUtils.h"
|
|
|
|
diff --git a/node_modules/react-native-passcode-status/react-native-passcode-status.podspec b/node_modules/react-native-passcode-status/react-native-passcode-status.podspec
|
|
new file mode 100644
|
|
index 0000000..874e763
|
|
--- /dev/null
|
|
+++ b/node_modules/react-native-passcode-status/react-native-passcode-status.podspec
|
|
@@ -0,0 +1,20 @@
|
|
+require "json"
|
|
+package = JSON.parse(File.read(File.join(__dir__, '/package.json')))
|
|
+
|
|
+Pod::Spec.new do |s|
|
|
+ s.name = package['name']
|
|
+ s.version = package['version']
|
|
+ s.summary = package['description']
|
|
+ s.description = package['description']
|
|
+ s.homepage = package['homepage']
|
|
+ s.license = package['license']
|
|
+ s.author = package['author']
|
|
+ s.source = { :git => 'https://github.com/tradle/react-native-passcode-status.git' }
|
|
+
|
|
+ s.platform = :ios, '7.0'
|
|
+ s.ios.deployment_target = '7.0'
|
|
+
|
|
+ s.source_files = "ios/*.{h,m}"
|
|
+
|
|
+ s.dependency 'React'
|
|
+end
|