omni-COT

(★ 18)

One Plugin to do all the COT things I want to do in ATAK

File Explorer

  • .gitignore
  • build.gradle
  • CONTRIBUTING.md
  • gradle.properties
  • gradlew
  • gradlew.bat
  • LICENSE
  • make-pipeline-zip.sh
  • monitor-logs.sh
  • PLUGIN_SUMMARY.md
  • RADIAL_MENU_IMPLEMENTATION.md
  • README.md
  • REMOTE_ID_INTEGRATION.md
  • settings.gradle
  • SUBMISSION_README.md
  • template.local.properties
  • TROUBLESHOOTING_SUMMARY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

adb install

View Details ▼

Push packages to a connected Android device or emulator.

adb install {{path/to/file}}.apk

Push an Android application to an emulator/device:

adb -s {{serial_number}} install {{path/to/file}}.apk

Push an Android application to a specific emulator/device (overrides `$ANDROID_SERIAL`):

adb install -r {{path/to/file}}.apk

[r]einstall an existing app, keeping its data:

🔍

cargo run

View Details ▼

Run the current Cargo package.
Note: The working directory of the executed binary will be set to the current working directory.

cargo {{[r|run]}}

Run the default binary target:

cargo {{[r|run]}} --bin {{name}}

Run the specified binary:

cargo {{[r|run]}} --example {{name}}

Run the specified example:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

// repository documentation