fleet/server/mdm/android
Victor Lyuboslavsky b21f54d648
Added signup_token for Android signup callback authentication. (#26681)
For #26218

- Added signup_token authentication for Android enterprise callback and
fixed API path to match API doc

# Checklist for submitter

- [x] Added/updated automated tests
- [x] Manual QA for all new/changed functionality
2025-02-28 15:08:04 -06:00
..
mock Added signup_token for Android signup callback authentication. (#26681) 2025-02-28 15:08:04 -06:00
mysql Added signup_token for Android signup callback authentication. (#26681) 2025-02-28 15:08:04 -06:00
service Added signup_token for Android signup callback authentication. (#26681) 2025-02-28 15:08:04 -06:00
tests Delete Android PubSub topic when deleting enterprise. (#26676) 2025-02-28 15:06:52 -06:00
android.go Added Android activity and better handling of deleted users. (#26640) 2025-02-27 14:19:15 -06:00
arch_test.go Added GET enterprise API endpoint. (#26555) 2025-02-26 10:47:05 -06:00
datastore.go Added signup_token for Android signup callback authentication. (#26681) 2025-02-28 15:08:04 -06:00
proxy.go Delete Android PubSub topic when deleting enterprise. (#26676) 2025-02-28 15:06:52 -06:00
pubsub.go Added custom auth for PubSub push endpoint. (#26664) 2025-02-27 15:16:32 -06:00
README.md Basic Android enroll functionality (#26386) 2025-02-24 14:31:21 -06:00
service.go Added signup_token for Android signup callback authentication. (#26681) 2025-02-28 15:08:04 -06:00

The MDM Android package attempts to decouple Android-specific service and datastore implementations from the core Fleet server code.

Any tightly coupled code that needs both the core Fleet server and the Android-specific features must live in the main server/fleet, server/service, and server/datastore packages. Typical example are MySQL queries. Any code that implements Android-specific functionality should live in the server/mdm/android package. For example, the common code from server/datastore package can call the android datastore methods as needed.

This decoupled approach attempts to achieve the following goals:

  • Easier to understand and find Android-specific code.
  • Easier to fix Android-specific bugs and add new features.
  • Easier to maintain Android-specific feature branches.
  • Faster Android-specific tests, including ability to run all tests in parallel.