-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreact-native-whatsapp-stickers.podspec
36 lines (28 loc) · 1.12 KB
/
react-native-whatsapp-stickers.podspec
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
28
29
30
31
32
33
34
35
36
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-whatsapp-stickers"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
Integrate sticker packs for WhatsApp with your react-native app
DESC
s.homepage = "https://github.com/Jobeso/react-native-whatsapp-stickers"
s.license = { :type => "BSD", :file => "LICENSE" }
s.authors = { "Johannes Sorg" => "[email protected]" }
s.platforms = { :ios => "9.0", :tvos => "10.0" }
s.source = { :git => "https://github.com/Jobeso/react-native-whatsapp-stickers.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,swift}"
s.requires_arc = true
s.dependency "React"
s.ios.vendored_frameworks = "**/WebP.framework"
s.framework = "UIKit"
s.framework = "CoreFoundation"
s.framework = "QuartzCore"
s.framework = "AssetsLibrary"
s.framework = "ImageIO"
s.framework = "Accelerate"
s.framework = "MobileCoreServices"
s.library = 'z'
s.swift_version = '4.2'
end