Skip to content

Screen recorder plugin for Flutter. Supports IOS and Android devices.

License

Notifications You must be signed in to change notification settings

Sakeshioyaki/ed_screen_recorder

 
 

Repository files navigation

Sakeshioyaki

fix permission to record in android 13 && width, height of device

ED Flutter Screen Recorder

Screen recorder plugin for Flutter. Supports IOS and Android devices.It does not work on the IOS emulator!!!!

Fork from : pubdev

Using

pubspec.yaml

ed_screen_recorder:
git : "https://github.com/Sakeshioyaki/ed_screen_recorder"

android/app/src/main/AndroidManifest.xml

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="32" tools:ignore="ScopedStorage" /> 
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
    <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" android:maxSdkVersion="32" tools:ignore="ScopedStorage" /> 
    <uses-permission android:name="android.permission.RECORD_AUDIO" /> 
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

You only need add the permission message on the Info.plist

  <key>NSPhotoLibraryUsageDescription</key>
	<string>Save video in gallery</string>
	<key>NSMicrophoneUsageDescription</key>
	<string>Save audio in video</string>

Feedback

If you have any feedback, please contact us at [email protected]

About

Screen recorder plugin for Flutter. Supports IOS and Android devices.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 82.2%
  • Swift 11.9%
  • Dart 4.5%
  • Other 1.4%