Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
react-native-motif-sdk / RNMotifSdk.podspec
Size: Mime:
require 'json'
package = JSON.parse(File.read('package.json'))

Pod::Spec.new do |s|
  s.name         = "RNMotifSdk"
  s.version      = package["version"]
  s.description  = package["description"]
  s.summary  = package["description"]
  s.homepage     = "https://gitlab.vipera.com/dynamic-engine/react-native-motif-sdk"
  s.license      = package['license']
  s.author  =    package["author"]
  s.platform     = :ios, "9.0"
  s.source       = { :git => "https://gitlab.vipera.com/dynamic-engine/react-native-motif-sdk.git", :tag => "{s.version}" }
  s.source_files  = "ios/**/*.{h,m}"
  s.requires_arc = true
  s.public_header_files = ['ios/RNMotifClient.h', 'ios/RNAssetManager.h']

  s.dependency "React"
  s.dependency "DEMotifConnectorNativeKit"

end