@capgo/capacitor-screen-recorder 8.1.44 → 8.1.46
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 +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,6 +21,13 @@ add NSPhotoLibraryUsageDescription in your info.plist
|
|
|
21
21
|
## Android
|
|
22
22
|
increase project's minSdk version to 23, it's required by the dependency scrcast
|
|
23
23
|
|
|
24
|
+
Add this permissions in your `AndroidManifest.xml`
|
|
25
|
+
```xml
|
|
26
|
+
<uses-permission android:name="android.permission.CAPTURE_VIDEO_OUTPUT" />
|
|
27
|
+
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION" />
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
|
|
24
31
|
### Variables
|
|
25
32
|
|
|
26
33
|
This plugin will use the following project variables (defined in your app's `variables.gradle` file):
|