react-native-tiny-wavpack-decoder 1.0.1 → 1.1.0

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/README.md CHANGED
@@ -1,10 +1,15 @@
1
1
  # react-native-tiny-wavpack-decoder
2
2
 
3
- A lightweight React Native Turbo Module for decoding WavPack audio files to WAV format on iOS and Android. Built with the New Architecture for optimal performance, this module supports progress updates during decoding and is designed for seamless integration into React Native apps.
3
+ A lightweight React Native Turbo Module for decoding WavPack audio files to WAV format on iOS and Android. Built with the New Architecture for optimal performance. This module also supports progress updates during decoding.
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/react-native-tiny-wavpack-decoder)](https://badge.fury.io/js/react-native-tiny-wavpack-decoder) [![License](https://img.shields.io/github/license/JairajJangle/react-native-tiny-wavpack-decoder)](https://github.com/JairajJangle/react-native-tiny-wavpack-decoder/blob/main/LICENSE) [![Workflow Status](https://github.com/JairajJangle/react-native-tiny-wavpack-decoder/actions/workflows/ci.yml/badge.svg)](https://github.com/JairajJangle/react-native-tiny-wavpack-decoder/actions/workflows/ci.yml) ![Android](https://img.shields.io/badge/-Android-555555?logo=android&logoColor=3DDC84) ![iOS](https://img.shields.io/badge/-iOS-555555?logo=apple&logoColor=white) [![GitHub issues](https://img.shields.io/github/issues/JairajJangle/react-native-tiny-wavpack-decoder)](https://github.com/JairajJangle/react-native-tiny-wavpack-decoder/issues?q=is%3Aopen+is%3Aissue) ![TS](https://img.shields.io/badge/TypeScript-strict_💪-blue) [![Known Vulnerabilities](https://snyk.io/test/github/jairajjangle/react-native-tiny-wavpack-decoder/badge.svg)](https://snyk.io/test/github/jairajjangle/react-native-tiny-wavpack-decoder) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/react-native-tiny-wavpack-decoder)
6
6
 
7
+ <div align="center">
8
+ <img src="https://media2.giphy.com/media/v1.Y2lkPTc5MGI3NjExaDFuMjU5amU0YjZ3aG1yd240cnY1dmgweXhobHpzd2ltOWdjZ3NkMSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/L4M2fUjJd9hRqZDaYf/giphy.gif" alt="Tiny WavPack Decoding demo" style="border: 1px solid gray;" />
9
+ </div>
10
+
7
11
  ## Features
12
+
8
13
  - Decode WavPack (.wv) files to WAV format.
9
14
  - Cross-platform support for iOS (13.0+) and Android (API 21+).
10
15
  - Progress updates via event emitter for real-time feedback.
@@ -12,7 +17,7 @@ A lightweight React Native Turbo Module for decoding WavPack audio files to WAV
12
17
  - Thread-safe decoding on iOS with concurrent queue support.
13
18
 
14
19
  ## Requirements
15
- - React Native 0.75 or higher with New Architecture enabled.
20
+ - React Native 0.77 or higher with New Architecture enabled.
16
21
  - iOS 13.0 or later.
17
22
  - Android API 21 or later.
18
23
  - Node.js 16+ for development.
@@ -147,4 +152,8 @@ MIT License. See [LICENSE](LICENSE) for details.
147
152
 
148
153
  ## Acknowledgments
149
154
  - Built with [WavPack](https://www.wavpack.com/)'s Tiny Decoder source for efficient audio decoding.
150
- - Uses React Native’s New Architecture for modern performance.
155
+ - Uses React Native’s New Architecture for modern performance.
156
+
157
+ ---
158
+
159
+ ##### Library for encoder coming soon...
@@ -53,7 +53,7 @@ android {
53
53
 
54
54
  externalNativeBuild {
55
55
  cmake {
56
- arguments "-DANDROID_STL=c++_shared"
56
+ arguments "-DANDROID_STL=c++_shared", "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON"
57
57
  }
58
58
  }
59
59
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-tiny-wavpack-decoder",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "Tiny WavPack Decoder for React Native",
5
5
  "source": "./src/index.tsx",
6
6
  "main": "./lib/module/index.js",
@@ -109,7 +109,7 @@
109
109
  },
110
110
  "peerDependencies": {
111
111
  "react": "*",
112
- "react-native": "*"
112
+ "react-native": ">=0.77.0"
113
113
  },
114
114
  "workspaces": [
115
115
  "example"