Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a-mabe/openhiit_background_service
Background service package customized for OpenHIIT
https://github.com/a-mabe/openhiit_background_service
android-background-sevices background-service flutter ios-background-services
Last synced: about 1 month ago
JSON representation
Background service package customized for OpenHIIT
- Host: GitHub
- URL: https://github.com/a-mabe/openhiit_background_service
- Owner: a-mabe
- License: mit
- Created: 2024-04-01T23:00:32.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-06-23T18:18:45.000Z (6 months ago)
- Last Synced: 2024-08-05T09:34:01.833Z (5 months ago)
- Topics: android-background-sevices, background-service, flutter, ios-background-services
- Language: Java
- Homepage:
- Size: 236 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.MD
Awesome Lists containing this project
README
# OpenHIIT Background Service
This is a fork of the [flutter_background_service](https://github.com/ekasetiawans/flutter_background_service) package, originally created by [ekasetiawans](https://github.com/ekasetiawans). The original package provides a framework for running background services in Flutter applications.
## Changes Made
Currently, the following changes have been made to the original package to better suit the needs of [OpenHIIT](https://github.com/a-mabe/OpenHIIT):
- Removed autostart on boot for Android.
- Automatically stop the background service on app close for Android.## Why Use OpenHIIT Background Service?
OpenHIIT Background Service offers functionality tailored specifically for the interval timer apps. If you're looking for a background service solution for your Flutter app, give OpenHIIT Background Service a try!
## Getting Started
To use OpenHIIT Background Service in your Flutter project, follow these steps:
1. Add the following to your `pubspec.yaml` file:
```yaml
dependencies:
openhiit_background_service:
git:
url: https://github.com/a-mabe/openhiit_background_service.git
```2. Run `flutter pub get` to install the package.
3. Import the package in your Dart code:
```dart
import 'package:openhiit_background_service/openhiit_background_service.dart';
```4. Follow the original [flutter_background_service documentation](https://pub.dev/packages/flutter_background_service) for additional usage instructions.
## Feedback and Contributions
If you have any feedback or would like to contribute to OpenHIIT Background Service, please feel free to open an issue or submit a pull request on [GitHub](https://github.com/a-mabe/openhiit_background_service).