Vitor
Vitor
This was creating crashes in our project. Perhaps this fixes for everyone who is experience that issue (e.g. #36)
**New Issue Checklist** - [X] I have read the [Documentation](https://quickblox.com/developers/IOS) - [X] I have searched for a similar issue in the [project](https://github.com/QuickBlox/quickblox-ios-sdk/issues) and found none **Environment details** Info|Value| ---|---| iOS...
`[!] undefined method 'scheme' for an instance of Hash` on `get_build_number_from_xcodeproj.rb:81`
Hi! I'm running on Ruby 3.3.4 and having trouble with this on CI. This is my call: ```ruby latest_build_number = lane_context[SharedValues::LATEST_TESTFLIGHT_BUILD_NUMBER] current_build_number = get_build_number_from_xcodeproj( xcodeproj: XCODEPROJ, scheme: options[:scheme], build_configuration_name: options[:build_configuration],...
This fixes the issue mentioned in #100 The `Hash` was being accessed in an incorrect manner, should use `hash[:property]` instead of `hash.property`. Changing the syntax fixed the issue :D