Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.07 KB

File metadata and controls

41 lines (29 loc) · 1.07 KB

PingUtility

small application to ping hosts

Overview

PingUtility is a flutter application for monitoring ping responses.

Application overview page in two themes

Build

This project is build with flutter. Use flutter build bundle in src directory to create android apk file.

Nix

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;
  };
}