-
Notifications
You must be signed in to change notification settings - Fork 524
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(ios): correctly link frameworks required #535
Conversation
@xgtz421 thanks for the PR. |
react-native-voice.podspec
Outdated
@@ -14,8 +13,13 @@ Pod::Spec.new do |s| | |||
s.homepage = package['homepage'] | |||
s.platform = :ios, "9.0" | |||
|
|||
# Link with AVFoundation and Speech frameworks | |||
s.frameworks = ['AVFoundation', 'Speech'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The example app only has the Speech
framework included, worth testing without AVFoundation
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have restored the package.json file and removed AVFoundation.
#534