@siteed/expo-audio-studio 2.8.5 → 2.8.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/CHANGELOG.md +6 -1
- package/android/build.gradle +4 -0
- package/expo-module.config.json +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
## [2.8.6] - 2025-05-11
|
|
12
|
+
### Changed
|
|
13
|
+
- chore(expo-audio-studio): update Android module configuration and prevent plugin conflicts ([7f696fb](https://github.com/deeeed/expo-audio-stream/commit/7f696fb4277f1747d1ba753397d2d6a97ea19abc))
|
|
14
|
+
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.5 ([bece9b6](https://github.com/deeeed/expo-audio-stream/commit/bece9b6b43cb1a780d9786e376efdd93ef82446f))
|
|
11
15
|
## [2.8.5] - 2025-05-11
|
|
12
16
|
### Changed
|
|
13
17
|
- chore(expo-audio-studio): remove exports field from package.json ([9dd5029](https://github.com/deeeed/expo-audio-stream/commit/9dd5029d81fcc3a4d5b95ee5956beb8481f3950a))
|
|
@@ -241,7 +245,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
241
245
|
- Feature: Audio features extraction during recording.
|
|
242
246
|
- Feature: Consistent WAV PCM recording format across all platforms.
|
|
243
247
|
|
|
244
|
-
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.
|
|
248
|
+
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.6...HEAD
|
|
249
|
+
[2.8.6]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.5...@siteed/expo-audio-studio@2.8.6
|
|
245
250
|
[2.8.5]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.4...@siteed/expo-audio-studio@2.8.5
|
|
246
251
|
[2.8.4]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.3...@siteed/expo-audio-studio@2.8.4
|
|
247
252
|
[2.8.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.2...@siteed/expo-audio-studio@2.8.3
|
package/android/build.gradle
CHANGED
|
@@ -5,6 +5,10 @@ apply plugin: 'maven-publish'
|
|
|
5
5
|
group = 'net.siteed.audiostream'
|
|
6
6
|
version = '0.1.0'
|
|
7
7
|
|
|
8
|
+
// These properties prevent plugin conflicts in all Expo versions
|
|
9
|
+
project.ext.isLibrary = true
|
|
10
|
+
project.ext.preventPluginConflict = true
|
|
11
|
+
|
|
8
12
|
buildscript {
|
|
9
13
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
10
14
|
if (expoModulesCorePlugin.exists()) {
|
package/expo-module.config.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@siteed/expo-audio-studio",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.6",
|
|
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
|
"type": "commonjs",
|