Isvisoft / flutter_screen_recording

A new Flutter plugin for record the screen.
MIT License
142 stars 138 forks source link

Support for Android v2 embedding #108

Closed TNorbury closed 3 months ago

TNorbury commented 3 months ago

Adds support for the Android V2 embedding

Closes #74 closes #101 closes #106

For anyone wanting to use this code in their projects in the meantime, update your pubspec.yaml to look like:

dependencies:
...
  flutter_screen_recording:
    git:
      url: https://github.com/TNorbury/flutter_screen_recording.git
      ref: android_v2_embedding
      path: flutter_screen_recording
...

dependency_overrides:
  flutter_screen_recording_platform_interface: 
    git:
      url: https://github.com/TNorbury/flutter_screen_recording.git
      ref: android_v2_embedding
      path: flutter_screen_recording_platform_interface
  flutter_screen_recording_web: 
    git:
      url: https://github.com/TNorbury/flutter_screen_recording.git
      ref: android_v2_embedding
      path: flutter_screen_recording_web
salime45 commented 3 months ago

Thanks