@capgo/capacitor-native-audio 8.4.9 → 8.4.11

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
@@ -88,6 +88,20 @@ The most complete doc is available here: https://capgo.app/docs/plugins/native-a
88
88
 
89
89
  ## Installation
90
90
 
91
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
92
+
93
+ ```bash
94
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
95
+ ```
96
+
97
+ Then use the following prompt:
98
+
99
+ ```text
100
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-native-audio` plugin in my project.
101
+ ```
102
+
103
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
104
+
91
105
  To use npm
92
106
 
93
107
  ```bash
@@ -75,7 +75,7 @@ dependencies {
75
75
  // When disabled, reduces APK size by ~4MB
76
76
  // Configure via capacitor.config.ts: plugins.NativeAudio.hls = false
77
77
  if (includeHls == 'true') {
78
- implementation 'androidx.media3:media3-exoplayer-hls:1.10.0'
78
+ implementation 'androidx.media3:media3-exoplayer-hls:1.10.1'
79
79
  }
80
80
 
81
81
  implementation 'androidx.media3:media3-session:1.10.0'
@@ -18,7 +18,7 @@ private enum PlaybackStateValue: String {
18
18
  @objc(NativeAudio)
19
19
  // swiftlint:disable:next type_body_length
20
20
  public class NativeAudio: CAPPlugin, AVAudioPlayerDelegate, CAPBridgedPlugin {
21
- private let pluginVersion: String = "8.4.9"
21
+ private let pluginVersion: String = "8.4.11"
22
22
  public let identifier = "NativeAudio"
23
23
  public let jsName = "NativeAudio"
24
24
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-native-audio",
3
- "version": "8.4.9",
3
+ "version": "8.4.11",
4
4
  "description": "A native plugin for native audio engine",
5
5
  "license": "MPL-2.0",
6
6
  "main": "dist/plugin.cjs.js",