@capgo/capacitor-media-session 8.0.25 → 8.0.26

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
@@ -24,6 +24,20 @@ The most complete doc is available here: https://capgo.app/docs/plugins/media-se
24
24
 
25
25
  ## Install
26
26
 
27
+ You can use our AI-Assisted Setup to install the plugin. Add the Capgo skills to your AI tool using the following command:
28
+
29
+ ```bash
30
+ npx skills add https://github.com/cap-go/capacitor-skills --skill capacitor-plugins
31
+ ```
32
+
33
+ Then use the following prompt:
34
+
35
+ ```text
36
+ Use the `capacitor-plugins` skill from `cap-go/capacitor-skills` to install the `@capgo/capacitor-media-session` plugin in my project.
37
+ ```
38
+
39
+ If you prefer Manual Setup, install the plugin by running the following commands and follow the platform-specific instructions below:
40
+
27
41
  ```bash
28
42
  npm install @capgo/capacitor-media-session
29
43
  npx cap sync
@@ -30,7 +30,7 @@ import org.json.JSONObject;
30
30
  @CapacitorPlugin(name = "MediaSession")
31
31
  public class MediaSessionPlugin extends Plugin {
32
32
 
33
- private final String pluginVersion = "8.0.25";
33
+ private final String pluginVersion = "8.0.26";
34
34
 
35
35
  private static final String TAG = "CapgoMediaSession";
36
36
 
@@ -4,7 +4,7 @@ import MediaPlayer
4
4
 
5
5
  @objc(MediaSessionPlugin)
6
6
  public class MediaSessionPlugin: CAPPlugin, CAPBridgedPlugin {
7
- private let pluginVersion: String = "8.0.25"
7
+ private let pluginVersion: String = "8.0.26"
8
8
  public let identifier = "MediaSessionPlugin"
9
9
  public let jsName = "MediaSession"
10
10
  public let pluginMethods: [CAPPluginMethod] = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-media-session",
3
- "version": "8.0.25",
3
+ "version": "8.0.26",
4
4
  "description": "Capacitor plugin to expose media session controls of the device",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",