-
Notifications
You must be signed in to change notification settings - Fork 173
Usage
This app is simpler than ADB, but it's quite powerful. Here you'll learn how to make the most of it, while following best-practices!
At the top of the window, you should see (left to right):
-
Reboot: This reboots the currently-selected device (if any is detected). Useful for testing significant changes to an Android, or to fix a minor issue after disabling a package.
⚠️ WARNING: There is no confirmation prompt! Any open activities will lose their data. -
🗘: "Refresh apps". It does these:
- triggers a reload of the devices-list, app-list, etc... by requesting data from ADB.
- clears the search-box and filters.
- tries to update the cached
uad_lists.json
file.
- Device picker: This is a combo-box that lists authorized devices. You won't see an Android if it hasn't allowed ADB connections.
- Version: UADNG app version numbers.
- "Apps": The apps view (explained later)
- "About": The "about" view (explained later)
- "⚙": The settings view (explained later)
You can think of view-switching buttons as "tabs" if you like.
This is the "home-page" of the UADNG app, as it provides all of the frequently-used features. You should see (from left to right, top to bottom):
- "Select all" check-box
- Search bar. As of now, the search-engine is extremely bare-bones. It just finds packages where the ID (name) contains the query as an identical (case-sensitive and continuous) sub-string. In the next release, it'll search descriptions as well!
- Filters:
- user/profile (enumerated by the Android)
- removal-level (from
uad_lists.json
) - state (reported by the Android)
- vendor/source/developer "list" (from
uad_lists.json
)
- The actual package list. Clicking a pack will display its description below.
- Description box. This info comes from
uad_lists.json
- "Export current selection" button. This will write the names of the packs, 1 per line, to
selection_export.txt
, in the same directory where the program file is located. - "Review selection" button. This prompts you before changing the states of multiple packs.
The app/pack list only shows packages reported as "system", not "third-party" by the Android device (we have no control over these categories). This was an intentional design choice, but it might change in the future.
Here you'll find meta-data about the UADNG app itself, update buttons, ADB version, and buttons that open URLs in your default browser (for remote stuff) or file-manager (for local stuff, such as the log-file)
This view is for controlling/configuring the behavior of UADNG, including the color-scheme (theme). You can also edit the config file directly (it's just TOML text), if you know the expected format.
The "Auto" theme detects your desktop color-scheme (light or dark) when UADNG starts. It's not "live", and it doesn't sync when you select it, so you have to re-open UADNG to ensure the theme is synced. This is intentional behavior, unfortunately. We'll try to improve this in the future.
"General" settings are "global", they apply to UADNG, not a specific device or app. "Device" settings apply on a per-device basis.
You'll also find the "Snapshot" (shown as "Backup / Restore") feature here. It makes UAD create files that remember the package-states in a file, which you can later use to apply those states again. This is quite helpful after factory-resets, or major OEM upgrades.
UAD (legacy) and UAD-NG don't run the adb kill-server
command when you close the app. This is intentional, as the app doesn't know if something else (such as the human user, or another program) is using ADB. If you want to free-up some RAM, you should run that cmd after you close the app. Don't worry about CPU, ADB is light-weight!