omni-COT
One Plugin to do all the COT things I want to do in ATAK
File Explorer
- BUILD_GUIDE.md
- SETUP_TEMURIN17.md
- create-pipeline-zip.yml
- FUNDING.yml
- strings.xml
- menu_filters.xml
- cot_affiliation_menu.xml
- plugin.xml
- BluetoothDeviceDialog.java
- BluetoothManager.java
- RemoteIdData.java
- RemoteIdParser.java
- RemoteIdToCotConverter.java
- AffiliationData.java
- AffiliationManager.java
- AlertConfigDialog.java
- AOIAdapter.java
- AOIItem.java
- CotAffiliationListener.java
- CotAffiliationMenuReceiver.java
- CotMenuEventListener.java
- CotMenuFactory.java
- DashboardActivity.java
- HapticFeedbackHelper.java
- OmniCOTDropDownReceiver.java
- OmniCOTMapComponent.java
- OmniCOTPlugin.java
- OmniCOTTool.java
- PluginNativeLoader.java
- btn_gray.xml
- ic_launcher.png
- ic_menu_friendly.xml
- ic_menu_hostile.xml
- ic_menu_info.xml
- ic_menu_pending.xml
- ic_menu_unknown.xml
- new_dark_button_bg.xml
- new_dark_button_disabled.xml
- new_dark_button_selected.xml
- aoi_alert_config.xml
- aoi_list_item.xml
- main_layout.xml
- omnicot_dashboard.xml
- colors.xml
- dimen.xml
- strings.xml
- styles.xml
- com_android_vending_archive_opt_out.xml
- AndroidManifest.xml
- ExampleTest.java
- build.gradle
- proguard-gradle-repackage.txt
- proguard-gradle.txt
- LibreFranklin-Black.otf
- LibreFranklin-BlackItalic.otf
- LibreFranklin-Bold.otf
- LibreFranklin-BoldItalic.otf
- LibreFranklin-ExtraBold.otf
- LibreFranklin-ExtraBoldItalic.otf
- LibreFranklin-ExtraLight.otf
- LibreFranklin-ExtraLightItalic.otf
- LibreFranklin-Italic.otf
- LibreFranklin-Light.otf
- LibreFranklin-LightItalic.otf
- LibreFranklin-Medium.otf
- LibreFranklin-MediumItalic.otf
- LibreFranklin-Regular.otf
- LibreFranklin-SemiBold.otf
- LibreFranklin-SemiBoldItalic.otf
- LibreFranklin-Thin.otf
- LibreFranklin-ThinItalic.otf
- lmsans10-bold.otf
- lmsans10-boldoblique.otf
- lmsans10-oblique.otf
- lmsans10-regular.otf
- lmsansdemicond10-oblique.otf
- lmsansdemicond10-regular.otf
- blank_template.jpg
- checklist_elements.jpg
- choose_status.jpg
- completed_checklist.jpg
- edit_icon.svg
- edit_row.jpg
- excheck_icon.svg
- excheck_toolbar.jpg
- finished_template.jpg
- fullscreen_icon.svg
- halfscreen_icon.svg
- new_checklist_icon.svg
- new_template_icon.svg
- start_new_checklist.jpg
- update_status.jpg
- upload_icon.svg
- upload_to_data_sync_icon.svg
- formatting.typ
- new_action.jpg
- plugin_icon.png
- plugin_toolbar.jpg
- titlepage.svg
- usermanual.typ
- OMNITAK_INTEGRATION.md
- gradle-wrapper.jar
- gradle-wrapper.properties
- typst.gradle
- ATAK-Plugin-omnicot-0.1--5.4.0-civ-release.apk
- ATAK-Plugin-omnicot-0.3-alpha-remoteid-5.4.0-civ-release.apk
- README.md
- RELEASE_NOTES_v0.1-alpha.md
- RELEASE_NOTES_v0.2-alpha.md
- RELEASE_NOTES_v0.3-alpha.md
- RELEASE_NOTES_v0.4-alpha.md
- ATAK-Plugin-omnicot-0.5--5.4.0-civ-release.apk
- RELEASE_NOTES.md
- ATAK-Plugin-omnicot-0.6--5.4.0-civ-release.apk
- RELEASE_NOTES.md
- alert_system_1.png
- alert_system_2.png
- dashboard.png
- .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
jsDelivrjsDelivr 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 ▼
adb install
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 ▼
cargo run
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 ▼
git clone
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:
