nosnia-audio-recorder 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/Podfile +13 -0
- package/package.json +1 -1
package/ios/Podfile
CHANGED
|
@@ -11,6 +11,19 @@ post_install do |installer|
|
|
|
11
11
|
installer.pods_project.targets.each do |target|
|
|
12
12
|
target.build_configurations.each do |config|
|
|
13
13
|
config.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
|
|
14
|
+
# keep inherited header search paths
|
|
15
|
+
config.build_settings['HEADER_SEARCH_PATHS'] ||= ['$(inherited)']
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
# Also apply to pod native targets (defensive)
|
|
20
|
+
installer.pod_targets.each do |pod|
|
|
21
|
+
begin
|
|
22
|
+
pod.native_target.build_configurations.each do |config|
|
|
23
|
+
config.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
|
|
24
|
+
end
|
|
25
|
+
rescue => e
|
|
26
|
+
# ignore pods without native_target
|
|
14
27
|
end
|
|
15
28
|
end
|
|
16
29
|
end
|
package/package.json
CHANGED