@capgo/capacitor-youtube-player 8.2.1 → 8.2.2
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
|
@@ -67,6 +67,8 @@ This plugin uses [android-youtube-player](https://github.com/PierfrancescoSoffri
|
|
|
67
67
|
- Cookie support via CookieManager
|
|
68
68
|
- **No API key required**
|
|
69
69
|
|
|
70
|
+
> Seeing `com.google.android.youtube.player` build errors? Upgrade to `@capgo/capacitor-youtube-player` **v8.2.0+** and run `npx cap sync android`. The plugin now uses the `android-youtube-player` library instead of the deprecated YouTube Android Player API.
|
|
71
|
+
|
|
70
72
|
**Note:** Uses YouTube's iframe API internally, providing a consistent experience across platforms.
|
|
71
73
|
|
|
72
74
|
## Privacy & GDPR Compliance
|
|
@@ -9,7 +9,7 @@ import UIKit
|
|
|
9
9
|
*/
|
|
10
10
|
@objc(YoutubePlayerPlugin)
|
|
11
11
|
public class YoutubePlayerPlugin: CAPPlugin, CAPBridgedPlugin {
|
|
12
|
-
private let pluginVersion: String = "8.2.
|
|
12
|
+
private let pluginVersion: String = "8.2.2"
|
|
13
13
|
public let identifier = "YoutubePlayerPlugin"
|
|
14
14
|
public let jsName = "YoutubePlayer"
|
|
15
15
|
|
package/package.json
CHANGED