Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions LocalAuth.podspec
Original file line number Diff line number Diff line change
@@ -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