munim-wifi 0.1.5 → 0.1.6
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/MunimWifi.podspec +3 -2
- package/package.json +1 -1
package/MunimWifi.podspec
CHANGED
|
@@ -28,10 +28,11 @@ Pod::Spec.new do |s|
|
|
|
28
28
|
# Add header search path for shared C++ headers
|
|
29
29
|
# The generated iOS bridge files include headers like "ScanOptions.hpp"
|
|
30
30
|
# which are located in nitrogen/generated/shared/c++/
|
|
31
|
+
# Use USER_HEADER_SEARCH_PATHS for quoted includes (user headers)
|
|
31
32
|
existing_xcconfig = s.attributes_hash['pod_target_xcconfig'] || {}
|
|
32
|
-
|
|
33
|
+
current_user_header_paths = existing_xcconfig['USER_HEADER_SEARCH_PATHS'] || '$(inherited)'
|
|
33
34
|
s.pod_target_xcconfig = existing_xcconfig.merge({
|
|
34
|
-
"
|
|
35
|
+
"USER_HEADER_SEARCH_PATHS" => "#{current_user_header_paths} $(SRCROOT)/nitrogen/generated/shared/c++"
|
|
35
36
|
})
|
|
36
37
|
|
|
37
38
|
s.dependency 'React-jsi'
|