@capgo/native-audio 7.8.0 → 7.9.1

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
@@ -52,6 +52,7 @@ The only **free**, **full-featured** audio playback plugin for Capacitor:
52
52
  - **Position tracking** - Real-time currentTime events (100ms intervals)
53
53
  - **Modern package management** - Supports both Swift Package Manager (SPM) and CocoaPods (SPM-ready for Capacitor 8)
54
54
  - **Same JavaScript API** - Compatible interface with paid alternatives
55
+ - **Support player notification center** - Play, pause, show cover for your user when long playing audio.
55
56
 
56
57
  Perfect for music players, podcast apps, games, meditation apps, and any audio-heavy application.
57
58
 
@@ -63,6 +63,6 @@ dependencies {
63
63
  implementation 'androidx.media3:media3-database:1.5.1'
64
64
  implementation 'androidx.media3:media3-common:1.8.0'
65
65
  // Media notification support
66
- implementation 'androidx.media:media:1.7.0'
66
+ implementation 'androidx.media:media:1.7.1'
67
67
  implementation 'androidx.core:core:1.13.1'
68
68
  }
@@ -13,7 +13,7 @@ enum MyError: Error {
13
13
  // swiftlint:disable type_body_length file_length
14
14
  @objc(NativeAudio)
15
15
  public class NativeAudio: CAPPlugin, AVAudioPlayerDelegate, CAPBridgedPlugin {
16
- private let pluginVersion: String = "7.8.0"
16
+ private let pluginVersion: String = "7.9.1"
17
17
  public let identifier = "NativeAudio"
18
18
  public let jsName = "NativeAudio"
19
19
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/native-audio",
3
- "version": "7.8.0",
3
+ "version": "7.9.1",
4
4
  "description": "A native plugin for native audio engine",
5
5
  "license": "MIT",
6
6
  "main": "dist/plugin.cjs.js",