Skip to content

Commit ebc70ef

Browse files
author
Sebastian Germesin
authored
Podspecs: Error installing react-native-onesignal
The branch names are misaligned with the version specified in the Podspecs. Hence, `pod install` fails. This corrects this issue.
1 parent 887c002 commit ebc70ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

react-native-onesignal.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Pod::Spec.new do |s|
1010
s.license = package_json["license"]
1111
s.author = { package_json["author"] => package_json["author"] }
1212
s.platform = :ios, "7.0"
13-
s.source = { :git => "#{package_json["repository"]["url"]}.git", :tag => "v#{s.version}" }
13+
s.source = { :git => "#{package_json["repository"]["url"]}.git", :tag => "#{s.version}" }
1414
s.source_files = 'ios/RCTOneSignal/*.{h,m}'
1515
s.dependency 'React'
1616
s.dependency 'OneSignal', '2.8.2'
1717

18-
end
18+
end

0 commit comments

Comments
 (0)