@capgo/capacitor-video-player 8.0.10 → 8.0.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
|
@@ -11,6 +11,17 @@ Native video playback for Capacitor apps
|
|
|
11
11
|
|
|
12
12
|
The most complete doc is available here: https://capgo.app/docs/plugins/video-player/
|
|
13
13
|
|
|
14
|
+
## Compatibility
|
|
15
|
+
|
|
16
|
+
| Plugin version | Capacitor compatibility | Maintained |
|
|
17
|
+
| -------------- | ----------------------- | ---------- |
|
|
18
|
+
| v8.\*.\* | v8.\*.\* | ✅ |
|
|
19
|
+
| v7.\*.\* | v7.\*.\* | On demand |
|
|
20
|
+
| v6.\*.\* | v6.\*.\* | ❌ |
|
|
21
|
+
| v5.\*.\* | v5.\*.\* | ❌ |
|
|
22
|
+
|
|
23
|
+
> **Note:** The major version of this plugin follows the major version of Capacitor. Use the version that matches your Capacitor installation (e.g., plugin v8 for Capacitor 8). Only the latest major version is actively maintained.
|
|
24
|
+
|
|
14
25
|
## Install
|
|
15
26
|
|
|
16
27
|
```bash
|
|
@@ -38,7 +38,7 @@ import java.util.Map;
|
|
|
38
38
|
)
|
|
39
39
|
public class VideoPlayerPlugin extends Plugin {
|
|
40
40
|
|
|
41
|
-
private final String pluginVersion = "8.0.
|
|
41
|
+
private final String pluginVersion = "8.0.11";
|
|
42
42
|
|
|
43
43
|
// Permission alias constants
|
|
44
44
|
private static final String PERMISSION_DENIED_ERROR = "Unable to access media videos, user denied permission request";
|
|
@@ -8,7 +8,7 @@ import AVKit
|
|
|
8
8
|
*/
|
|
9
9
|
@objc(VideoPlayerPlugin)
|
|
10
10
|
public class VideoPlayerPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
11
|
-
private let pluginVersion: String = "8.0.
|
|
11
|
+
private let pluginVersion: String = "8.0.11"
|
|
12
12
|
public let identifier = "VideoPlayerPlugin"
|
|
13
13
|
public let jsName = "VideoPlayer"
|
|
14
14
|
public let pluginMethods: [CAPPluginMethod] = [
|