device_screen_recorder 0.0.1 copy "device_screen_recorder: ^0.0.1" to clipboard
device_screen_recorder: ^0.0.1 copied to clipboard

outdated

A Flutter plugin for record the screen. This plug-in requires Android SDK 21+ and iOS 10+

device_screen_recorder #

A Flutter plugin for record the screen based on HBRecorder. This plug-in requires Android SDK 21+

Getting Started #

This plugin can be used for record the screen on Android and iOS devices.

Start the recording:

bool started = FlutterScreenRecording.startRecordScreen(name: 'example');

Or

bool started = FlutterScreenRecording.startRecordScreen();

Stop the recording:

String path = FlutterScreenRecording.stopRecordScreen();

Android #

Require add the following permissions in your manifest:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

Add the following in your root build.gradle at the end of repositories:

allprojects {
    repositories {
        google()
        jcenter()
        maven { url 'https://jitpack.io' }
    }
}

Implement library in your app level build.gradle:

dependencies {
    implementation 'com.github.HBiSoft:HBRecorder:2.0.0'
}

iOS #

In progress

13
likes
0
pub points
72%
popularity

Publisher

verified publisherkovardin.ru

A Flutter plugin for record the screen. This plug-in requires Android SDK 21+ and iOS 10+

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on device_screen_recorder