Foreground Service plugin for Flutter (doesn't work on iOS)
This is a draft
add in pubspec.yaml
flutter_foreground_service:
git:
url: https://github.com/pspgt/flutter_foreground_service.git
ref: master
and import
import 'package:flutter_foreground_service/flutter_foreground_service.dart';
In order to use this plugin add to your android manifest
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"></uses-permission>
and
<service android:name="it.zeruel.flutter_foreground_service.ForegroundService"></service>
You need also to create Application.java in order to use plugins in background tasks:
import io.flutter.app.FlutterApplication;
import io.flutter.plugin.common.PluginRegistry;
import io.flutter.plugins.GeneratedPluginRegistrant;
import it.zeruel.flutter_foreground_service.ForegroundService;
public class Application extends FlutterApplication implements PluginRegistry.PluginRegistrantCallback {
@Override
public void onCreate() {
super.onCreate();
ForegroundService.setPluginRegistrant(this);
}
@Override
public void registerWith(PluginRegistry registry) {
GeneratedPluginRegistrant.registerWith(registry);
}
}
and set on AndroidManifest.xml
<application
android:name=".Application"
FlutterForegroundService.start(
title: 'Titolo',
text: 'Testo Notifica',
subText: 'Sottotesto',
ticker: 'AccessibilitĂ ',
callback: backgroundtask,
seconds: 30
)
backgroundtask must be a global void function
FlutterForegroundService.stop()