├── .github ├── FUNDING.yaml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build.md │ ├── chore.md │ ├── ci.md │ ├── config.yml │ ├── documentation.md │ ├── feature_request.md │ ├── performance.md │ ├── refactor.md │ ├── revert.md │ ├── style.md │ └── test.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yaml └── workflows │ ├── main.yaml │ └── publish.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── coverage_badge.svg ├── cspell.json ├── example └── main.dart ├── lib ├── flutter_daemon.dart └── src │ ├── flutter_application │ ├── flutter_application.dart │ └── requests │ │ ├── app_call_service_extension.dart │ │ ├── app_detach.dart │ │ ├── app_restart.dart │ │ ├── app_stop.dart │ │ └── requests.dart │ └── flutter_daemon │ ├── flutter_daemon.dart │ ├── flutter_daemon_event.dart │ ├── flutter_daemon_request.dart │ └── flutter_daemon_response.dart ├── pubspec.yaml ├── test └── src │ ├── flutter_application │ ├── flutter_application_test.dart │ └── requests │ │ ├── app_call_service_extension_test.dart │ │ ├── app_detach_test.dart │ │ ├── app_restart_test.dart │ │ └── app_stop_test.dart │ └── flutter_daemon │ ├── flutter_daemon_event_test.dart │ ├── flutter_daemon_request_test.dart │ ├── flutter_daemon_response_test.dart │ └── flutter_daemon_test.dart └── tools └── release_ready.sh /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: [wolfenrain] -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/build.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/chore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/chore.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/performance.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/refactor.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/revert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/revert.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/style.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/ISSUE_TEMPLATE/test.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /coverage_badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/coverage_badge.svg -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/cspell.json -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/flutter_daemon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/flutter_daemon.dart -------------------------------------------------------------------------------- /lib/src/flutter_application/flutter_application.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_application/flutter_application.dart -------------------------------------------------------------------------------- /lib/src/flutter_application/requests/app_call_service_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_application/requests/app_call_service_extension.dart -------------------------------------------------------------------------------- /lib/src/flutter_application/requests/app_detach.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_application/requests/app_detach.dart -------------------------------------------------------------------------------- /lib/src/flutter_application/requests/app_restart.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_application/requests/app_restart.dart -------------------------------------------------------------------------------- /lib/src/flutter_application/requests/app_stop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_application/requests/app_stop.dart -------------------------------------------------------------------------------- /lib/src/flutter_application/requests/requests.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_application/requests/requests.dart -------------------------------------------------------------------------------- /lib/src/flutter_daemon/flutter_daemon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_daemon/flutter_daemon.dart -------------------------------------------------------------------------------- /lib/src/flutter_daemon/flutter_daemon_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_daemon/flutter_daemon_event.dart -------------------------------------------------------------------------------- /lib/src/flutter_daemon/flutter_daemon_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_daemon/flutter_daemon_request.dart -------------------------------------------------------------------------------- /lib/src/flutter_daemon/flutter_daemon_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/lib/src/flutter_daemon/flutter_daemon_response.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/src/flutter_application/flutter_application_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/test/src/flutter_application/flutter_application_test.dart -------------------------------------------------------------------------------- /test/src/flutter_application/requests/app_call_service_extension_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/test/src/flutter_application/requests/app_call_service_extension_test.dart -------------------------------------------------------------------------------- /test/src/flutter_application/requests/app_detach_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/test/src/flutter_application/requests/app_detach_test.dart -------------------------------------------------------------------------------- /test/src/flutter_application/requests/app_restart_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/test/src/flutter_application/requests/app_restart_test.dart -------------------------------------------------------------------------------- /test/src/flutter_application/requests/app_stop_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/test/src/flutter_application/requests/app_stop_test.dart -------------------------------------------------------------------------------- /test/src/flutter_daemon/flutter_daemon_event_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/test/src/flutter_daemon/flutter_daemon_event_test.dart -------------------------------------------------------------------------------- /test/src/flutter_daemon/flutter_daemon_request_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/test/src/flutter_daemon/flutter_daemon_request_test.dart -------------------------------------------------------------------------------- /test/src/flutter_daemon/flutter_daemon_response_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/test/src/flutter_daemon/flutter_daemon_response_test.dart -------------------------------------------------------------------------------- /test/src/flutter_daemon/flutter_daemon_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/test/src/flutter_daemon/flutter_daemon_test.dart -------------------------------------------------------------------------------- /tools/release_ready.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/flutter_daemon/HEAD/tools/release_ready.sh --------------------------------------------------------------------------------