Skip to content

Add support for dots to Android #178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Prev Previous commit
Next Next commit
add podspec
kneza23 authored Aug 19, 2019

Verified

This commit was signed with the committer’s verified signature.
aaronmdjones Aaron Jones
commit 182db34e21f14fa5e942a74114894a3ae11f152b
16 changes: 16 additions & 0 deletions react-native-signature-capture.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
require "json"

package = JSON.parse(File.read(File.join(__dir__, "package.json")))

Pod::Spec.new do |s|
s.name = "react-native-signature-capture"
s.version = package["version"]
s.summary = package["description"]
s.author = package["author"]
s.homepage = package["homepage"]
s.license = package["license"]
s.platform = :ios, "8.4"
s.source = { :git => "https://github.com/RepairShopr/react-native-signature-capture", :tag => "#{s.version}" }
s.source_files = "ios/*.{h,m}"
s.dependency "React"
end