-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-native-snapkit.podspec
More file actions
28 lines (22 loc) · 916 Bytes
/
react-native-snapkit.podspec
File metadata and controls
28 lines (22 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-snapkit"
s.version = package["version"]
s.summary = package["summary"]
s.description = <<-DESC
react-native-snapkit
DESC
s.homepage = "https://github.com/github_account/react-native-snapkit"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.authors = { "Kane Thomas" => "kane@fadmania.com" }
s.platforms = { :ios => "10.0" }
s.source = { :git => "https://github.com/github_account/react-native-snapkit.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,swift}"
s.requires_arc = true
# s.use_frameworks = true
s.dependency "React"
s.dependency "SnapSDK/SCSDKLoginKit", '1.6.9'
s.dependency "SnapSDK/SCSDKCreativeKit", '1.6.9'
end