This commit is contained in:
Andrey Bondarenko
2021-01-21 14:29:24 +10:00
parent b651948d45
commit f606229340
7 changed files with 38 additions and 6480 deletions

View File

@@ -0,0 +1,20 @@
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-appmetrica-next-next"
s.version = package["version"]
s.summary = package["description"]
s.homepage = package["homepage"]
s.license = package["license"]
s.authors = { "Yandex LLC" => "appmetrica@yandex-team.com" }
s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/yandexmobile/react-native-appmetrica-next.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,swift}"
s.requires_arc = true
s.dependency "React"
s.dependency 'YandexMobileMetrica', '3.12.0'
end