device_screen_recorder_new 0.0.6 copy "device_screen_recorder_new: ^0.0.6" to clipboard
device_screen_recorder_new: ^0.0.6 copied to clipboard

PlatformAndroid

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

# device_screen_recorder_new

Version: 0.0.4

A Flutter plugin for record the screen based on [HBRecorder](https://github.com/HBiSoft/HBRecorder). This plug-in requires Android SDK 21+

[Donnations](https://www.tinkoff.ru/cf/6xz8n4h0LzO)

## What's New in 0.0.4

- **Fixed:** Removed deprecated `package` attribute from AndroidManifest.xml to support modern Android Gradle Plugin versions
  - The `package="ru.kovardin.device_screen_recorder_new"` attribute is no longer used in the source AndroidManifest.xml
  - This resolves build failures related to namespace configuration in newer Android projects

## Getting Started

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

Start the recording:

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

```dart
bool started = DeviceScreenRecorder.startRecordScreen();
```

Stop the recording:

```dart
String path = DeviceScreenRecorder.stopRecordScreen();
```

## Android

Require add the following permissions in your manifest:

```xml
<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:

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

Implement library in your app level build.gradle:

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

## iOS

In progress
1
likes
130
points
20
downloads

Publisher

verified publishernurshat.org

Weekly Downloads

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on device_screen_recorder_new

Packages that implement device_screen_recorder_new