Closed winkelsdorf closed 5 years ago
Having the following code to explicitly exclude the acknowledgements from the settings.bundle (I am using the meta plist instead):
settings.bundle
plist
plugin 'cocoapods-acknowledgements', :settings_bundle => false, :exclude => [ 'SimulatorStatusMagic', 'Reveal-SDK', 'Quick', 'Nimble' ]
Acknowledgements are still copied to the Settings.bundle.
Settings.bundle
In https://github.com/CocoaPods/cocoapods-acknowledgements/blob/master/lib/cocoapods_acknowledgements.rb#L54 settings_bundle is checked for nil, not for true.
nil
true
Having the following code to explicitly exclude the acknowledgements from the
settings.bundle
(I am using the metaplist
instead):Acknowledgements are still copied to the
Settings.bundle
.In https://github.com/CocoaPods/cocoapods-acknowledgements/blob/master/lib/cocoapods_acknowledgements.rb#L54 settings_bundle is checked for
nil
, not fortrue
.