@capgo/capacitor-screen-recorder 1.2.22 → 1.2.24
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 +16 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -26,6 +26,22 @@ increase project's minSdk version to 23, it's required by the dependency scrcast
|
|
|
26
26
|
This plugin will use the following project variables (defined in your app's `variables.gradle` file):
|
|
27
27
|
- `$kotlinVersion` version of `org.jetbrains.kotlin:kotlin-stdlib-jdk7` (default: `1.7.21`)
|
|
28
28
|
|
|
29
|
+
If you have compilation issue `Duplicate class androidx.lifecycle.ViewModelLazy`
|
|
30
|
+
i found in this the solution who worked for me:
|
|
31
|
+
https://stackoverflow.com/questions/73406969/duplicate-class-androidx-lifecycle-viewmodellazy-found-in-modules-lifecycle-view
|
|
32
|
+
|
|
33
|
+
Add this
|
|
34
|
+
```
|
|
35
|
+
configurations {
|
|
36
|
+
all {
|
|
37
|
+
exclude group: 'androidx.lifecycle', module: 'lifecycle-runtime-ktx'
|
|
38
|
+
exclude group: 'androidx.lifecycle', module: 'lifecycle-viewmodel-ktx'
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
an
|
|
42
|
+
```
|
|
43
|
+
line 2 in file `android/app/build.gradle`
|
|
44
|
+
|
|
29
45
|
## Configuration
|
|
30
46
|
|
|
31
47
|
No configuration required for this plugin.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capgo/capacitor-screen-recorder",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.24",
|
|
4
4
|
"description": "Record device's screen",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"eslint-plugin-import": "^2.26.0",
|
|
59
59
|
"husky": "^8.0.2",
|
|
60
60
|
"prettier": "^2.7.1",
|
|
61
|
-
"prettier-plugin-java": "^
|
|
61
|
+
"prettier-plugin-java": "^2.0.0",
|
|
62
62
|
"rimraf": "^3.0.2",
|
|
63
63
|
"rollup": "^3.2.5",
|
|
64
64
|
"swiftlint": "^1.0.1",
|