@capgo/capacitor-screen-recorder 1.2.21 → 1.2.23

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
@@ -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.
@@ -1,8 +1,8 @@
1
1
  buildscript {
2
2
  ext {
3
3
  junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
4
- androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.3'
5
- androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.4.0'
4
+ androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.4'
5
+ androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.0'
6
6
  androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.4.2'
7
7
  androidxCoreVersion = project.hasProperty('androidxCoreVersion') ? rootProject.ext.androidxCoreVersion : '1.8.0'
8
8
  kotlinVersion = project.hasProperty('kotlinVersion') ? rootProject.ext.kotlinVersion : '1.7.21'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-screen-recorder",
3
- "version": "1.2.21",
3
+ "version": "1.2.23",
4
4
  "description": "Record device's screen",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",