small application to ping hosts
PingUtility is a flutter application for monitoring ping responses.
This project is build with flutter.
Use flutter build bundle in src directory to create android apk file.
This repository uses devenv for managing development environments via Nix.
Type devenv shell in project root to enter the development environment,
or use direnv to automatically enter the environment.
Also configuration can be overridden via devenv.local.nix private configuration file. Full devenv documentation can be found at https://devenv.sh/reference/options.
Example:
{lib, ...}: {
android = {
emulator.enable = false;
# lib.mkForce used to override value from devenv.nix
android-studio.enable = lib.mkForce false;
};
}