You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Follow integration steps per usual for the library versions noted above
Create and validate an iOS archive
Expected
I see no warnings about missing dSYMs
Actual
Things I've tried to fix this:
add the Mapbox frameworks to the Link Binary with Libraries in the xcodeproj
update the Podfile post-install hooks:
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf-with-dsym'
end
end
end
The text was updated successfully, but these errors were encountered:
dwarf (usually used for debug variants as we don't care about inflating binary size by embedding the debug symbols) NOR
the dwarf-with-dsym (usually used for beta and release variants since the binary that ships is smaller as it doesn't have the debug symbols embedded – those get uploaded separately to crashlytics or Embrace or whatever you're using to monitor your application)
values for the build setting DEBUG_INFORMATION_FORMAT will make a difference as far as the Mapbox's native libs are concerned.
said differently, this will NOT help:
# this will NOT help you
if target.name == 'MapboxMaps'
target.build_configurations.each do |config|
config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf-with-dsym' # or 'dwarf'
end
end
Environment
10.1.31
, Native Mapbox version11.6.0
0.75.3
Steps to reproduce
Expected
I see no warnings about missing dSYMs
Actual
Things I've tried to fix this:
Link Binary with Libraries
in thexcodeproj
Podfile
post-install hooks:The text was updated successfully, but these errors were encountered: