Skip to content

Commit

Permalink
fix(ios): Update podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
hiteshjain29 committed May 29, 2024
1 parent 31e14b5 commit 0c86f11
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions usabilla-react-native.podspec → UsabillaReactNative.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,24 @@ require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

Pod::Spec.new do |s|
s.name = package['name']
s.name = 'UsabillaReactNative'
s.version = package['version']
s.summary = package['description']
s.license = package['license']

s.authors = package['author']
s.homepage = package['homepage']
s.platform = :ios, "9.0"
s.platform = :ios, "12.0"

s.swift_version = "4.0"
s.source = { :git => "https://github.com/usabilla/usabilla-u4a-react-native.git", :tag => "v#{s.version}" }

s.vendored_frameworks = 'Usabilla.xcframework'
s.source_files = "ios/**/*.{h,m,swift}"
s.ios.resource_bundle = { 'Usabilla' => 'Usabilla.xcframework/PrivacyInfo.xcprivacy' }
s.module_name = 'UsabillaReactNative'

s.dependency 'React'
s.dependency 'Usabilla', '~> 6.5'

end

0 comments on commit 0c86f11

Please sign in to comment.