@siteed/expo-audio-studio 2.6.1 → 2.6.3
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/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
## [2.6.3] - 2025-05-03
|
|
12
|
+
### Changed
|
|
13
|
+
- chore: update readme with store download information (#224) ([c404d86](https://github.com/deeeed/expo-audio-stream/commit/c404d860cdb1c4c4bbc3767214f56bf547acec33))
|
|
14
|
+
## [2.6.2] - 2025-05-01
|
|
15
|
+
### Changed
|
|
16
|
+
- fix(audio-studio): ensure foreground-only audio recording works with FOREGROUND_SERVICE #202 (#221) ([abc450c](https://github.com/deeeed/expo-audio-stream/commit/abc450cb73968cc260e430758df9b72e00f75ef7))
|
|
17
|
+
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.6.1 ([9191a2c](https://github.com/deeeed/expo-audio-stream/commit/9191a2cec8e21cd03a0d5be59d823583d449d9c9))
|
|
11
18
|
## [2.6.1] - 2025-05-01
|
|
12
19
|
### Changed
|
|
13
20
|
- fix(expo-audio-studio): Resolve iOS HW Format Mismatch Crash and Enhance Logging (#220) ([4909f76](https://github.com/deeeed/expo-audio-stream/commit/4909f7646fcf682fcdaed84988b8d8e58b7b626c))
|
|
@@ -206,7 +213,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
206
213
|
- Feature: Audio features extraction during recording.
|
|
207
214
|
- Feature: Consistent WAV PCM recording format across all platforms.
|
|
208
215
|
|
|
209
|
-
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.6.
|
|
216
|
+
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.6.3...HEAD
|
|
217
|
+
[2.6.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.6.2...@siteed/expo-audio-studio@2.6.3
|
|
218
|
+
[2.6.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.6.1...@siteed/expo-audio-studio@2.6.2
|
|
210
219
|
[2.6.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.6.0...@siteed/expo-audio-studio@2.6.1
|
|
211
220
|
[2.6.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.5.0...@siteed/expo-audio-studio@2.6.0
|
|
212
221
|
[2.5.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.4.1...@siteed/expo-audio-studio@2.5.0
|
package/README.md
CHANGED
|
@@ -21,6 +21,18 @@
|
|
|
21
21
|
</div>
|
|
22
22
|
</div>
|
|
23
23
|
|
|
24
|
+
<div style="display: flex; flex-direction: column; align-items: center; margin-bottom: 20px;">
|
|
25
|
+
<p><strong>Try AudioPlayground: Complete audio processing app built with this library</strong></p>
|
|
26
|
+
<div style="display: flex; justify-content: center; gap: 20px; margin: 10px 0;">
|
|
27
|
+
<a href="https://apps.apple.com/app/audio-playground/id6739774966">
|
|
28
|
+
<img src="https://developer.apple.com/app-store/marketing/guidelines/images/badge-download-on-the-app-store.svg" alt="Download on the App Store" height="40" />
|
|
29
|
+
</a>
|
|
30
|
+
<a href="https://play.google.com/store/apps/details?id=net.siteed.audioplayground">
|
|
31
|
+
<img src="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png" alt="Get it on Google Play" height="40" />
|
|
32
|
+
</a>
|
|
33
|
+
</div>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
24
36
|
<a href="https://deeeed.github.io/expo-audio-stream/playground" style="text-decoration:none;">
|
|
25
37
|
<div style="display:inline-block; padding:10px 20px; background-color:#007bff; color:white; border-radius:5px; font-size:16px;">
|
|
26
38
|
Try it in the Playground
|
|
@@ -62,8 +62,8 @@ class ExpoAudioStreamModule : Module(), EventSender {
|
|
|
62
62
|
// Check if POST_NOTIFICATIONS is in the requested permissions
|
|
63
63
|
enableNotificationHandling = packageInfo.requestedPermissions?.contains(Manifest.permission.POST_NOTIFICATIONS) ?: false
|
|
64
64
|
|
|
65
|
-
// Check if background audio is enabled by looking for
|
|
66
|
-
enableBackgroundAudio = packageInfo.requestedPermissions?.contains(Manifest.permission.
|
|
65
|
+
// Check if background audio is enabled by looking for FOREGROUND_SERVICE_MICROPHONE permission
|
|
66
|
+
enableBackgroundAudio = packageInfo.requestedPermissions?.contains(Manifest.permission.FOREGROUND_SERVICE_MICROPHONE) ?: false
|
|
67
67
|
|
|
68
68
|
LogUtils.d(CLASS_NAME, "Phone state handling ${if (enablePhoneStateHandling) "enabled" else "disabled"} based on manifest permissions")
|
|
69
69
|
LogUtils.d(CLASS_NAME, "Notification handling ${if (enableNotificationHandling) "enabled" else "disabled"} based on manifest permissions")
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@siteed/expo-audio-studio",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.3",
|
|
4
4
|
"description": "Comprehensive audio processing library for React Native and Expo with recording, analysis, visualization, and streaming capabilities across iOS, Android, and web",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "build/index.js",
|