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

PlatformAndroid

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+

Donnations

Getting Started #

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

Start the recording:

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

Or

bool started = DeviceScreenRecorder.startRecordScreen();

Stop the recording:

String path = DeviceScreenRecorder.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()
        mavenCentral()
        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
110
pub points
75%
popularity

Publisher

verified publisherkovardin.ru

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

Homepage
Repository

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on device_screen_recorder