diff --git a/LocalAuth.podspec b/LocalAuth.podspec new file mode 100644 index 00000000..7d0c2630 --- /dev/null +++ b/LocalAuth.podspec @@ -0,0 +1,18 @@ +require 'json' + +package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) + +Pod::Spec.new do |s| + s.name = "LocalAuth" + s.version = package['version'] + s.summary = "A React Native library for authenticating users with Local Authentication" + s.homepage = "https://github.com/tradle/react-native-local-auth" + s.license = "MIT" + + s.author = { "Naoufal Kadhom" => "naoufalkadhom@gmail.com" } + s.platform = :ios, "7.0" + s.source = { :git => "https://github.com/tradle/react-native-local-auth.git" } + + s.source_files = "*.{h,m}" + s.dependency "React" +end \ No newline at end of file