react-native-audio-api 0.8.3-nightly-1b5718f-20250913 → 0.8.3-nightly-56904d1-20250915

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.
@@ -39,8 +39,11 @@ Pod::Spec.new do |s|
39
39
  # ruby -r './scripts/download-audioapi-libs.rb'
40
40
  # CMD
41
41
 
42
- external_dir = File.join(__dir__, "common/cpp/audioapi/external")
43
- lib_dir = "#{external_dir}/$(PLATFORM_NAME)"
42
+ # Assumes Pods dir is nested under ios project dir
43
+ ios_dir = File.join(Pod::Config.instance.project_pods_root, '..')
44
+ rn_audio_dir_relative = Pathname.new(__dir__).relative_path_from(ios_dir).to_s
45
+ external_dir = "common/cpp/audioapi/external"
46
+ lib_dir = "$(PROJECT_DIR)/#{rn_audio_dir_relative}/#{external_dir}/$(PLATFORM_NAME)"
44
47
 
45
48
  s.ios.vendored_frameworks = [
46
49
  'common/cpp/audioapi/external/libavcodec.xcframework',
@@ -56,9 +59,9 @@ s.pod_target_xcconfig = {
56
59
  "HEADER_SEARCH_PATHS" => %W[
57
60
  $(PODS_TARGET_SRCROOT)/common/cpp
58
61
  $(PODS_TARGET_SRCROOT)/ios
59
- #{external_dir}/include
60
- #{external_dir}/include/opus
61
- #{external_dir}/include/vorbis
62
+ $(PODS_TARGET_SRCROOT)/#{external_dir}/include
63
+ $(PODS_TARGET_SRCROOT)/#{external_dir}/include/opus
64
+ $(PODS_TARGET_SRCROOT)/#{external_dir}/include/vorbis
62
65
  $(PODS_TARGET_SRCROOT)/common/cpp/audioapi/external/ffmpeg_include
63
66
  ].join(" "),
64
67
  'OTHER_CFLAGS' => "$(inherited) #{folly_flags} #{fabric_flags} #{version_flag}"
@@ -78,4 +81,4 @@ s.user_target_xcconfig = {
78
81
  # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
79
82
  # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
80
83
  install_modules_dependencies(s)
81
- end
84
+ end
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-audio-api",
3
- "version": "0.8.3-nightly-1b5718f-20250913",
3
+ "version": "0.8.3-nightly-56904d1-20250915",
4
4
  "description": "react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification",
5
5
  "bin": {
6
6
  "setup-rn-audio-api-web": "./scripts/setup-rn-audio-api-web.js"