We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83c8f1d commit 52a9bb0Copy full SHA for 52a9bb0
1 file changed
Podfile
@@ -265,14 +265,10 @@ pre_install do |installer|
265
dynamic = []
266
installer.pod_targets.each do |pod|
267
use_dynamic_frameworks = false
268
- if dyanmic_framework_pods.include? pod.name
269
- use_dynamic_frameworks = true
270
- end
+ use_dynamic_frameworks = true if dyanmic_framework_pods.include? pod.name
271
272
# If this pod is a dependency of one of our shared targets, it must be linked dynamically
273
- if pod.target_definitions.any? { |t| shared_targets.include? t.name }
274
275
+ use_dynamic_frameworks = true if pod.target_definitions.any? { |t| shared_targets.include? t.name }
276
277
if use_dynamic_frameworks
278
dynamic << pod
0 commit comments