Hi prozhak! Please be sure to reach out to our SDK specialists on the Web / App Feedback team about this, as they are best able to assist! Thanks!
LaurenK we're also having the same issue. can the SDK specialists or App feedback team post the fix here so devs that get to this point after doing some research have a more handy answer?
prozhak maybe you can also post the fix here and help the community
LaurenK any update? i can't reach support center, the link is not working
Hi emanzanares! If this hyperlink to the Support Portal is not loading correctly, please copy and paste the link below in your web browser and you should be able to fill out a Support Request to get in touch with the Website/App Feedback Team! If you can't access the Support Center, please select "Can't login or don't have an account".
www.qualtrics.com/support-center/
Please let us know if you have any more issues contacting our Support Team
Hi there !
I came across the same issue with the following react-native confirugation, with iOS only:
react-native: 0.70.6
react-native-qualtrics: 2.4.1
Qualtrics Pod: 2.12.0
I was able to make it work by adding the corresponding podspec file under node_modules/react-native-qualtrics/react-native-qualtrics.podspec
I created the podspec file and include some random data:
require 'json'
package = JSON.parse(File.read('./package.json'))
Pod::Spec.new do |s|
s.name = packagek'name']
s.version = packagek'version']
s.summary = "RNQualtricsDigital"
s.description = "https://api.qualtrics.com"
s.homepage = "https://api.qualtrics.com"
s.license = 'MIT'
s.platform = :ios, "9.0"
s.requires_arc = true
s.source = { :http => 'file:' + __dir__ + '/ios/RNQualtricsDigital.zip' }
s.source_files = "ios/*.{h,m,swift}"
s.author = "Qualtrics"
s.preserve_paths = "README.md", "package.json", "index.js"
s.dependency "React-Core"
s.dependency "Qualtrics", '2.12.0'
end
And then, I used patch-package to keep track of it and it worked perfectly fine.
Thanks it fixed it for me!