fix: search only default user to get uid - #21
Merged
Merged
Conversation
mzdk100
added a commit
that referenced
this pull request
Jul 22, 2026
…21) Issue #19 and #20 share the same root cause: `pm list package -U` without `--user` queries across all users, returning comma-separated multi-user UIDs (e.g. `uid:10096,1110096`) and tripping a SecurityException on inaccessible secondary users (e.g. Secure Folder). PR #21 added `--user 0`, which restricts the query to the primary user and always returns a single `uid:10096`. The comma-splitting `Vec<u32>` parsing added for #19 is therefore redundant and has been reverted: - `uidof` now returns a single `u32` again and parses the single UID directly. - The logcat `--uid` filter uses the single uid instead of joining a list. Also fix two pre-existing `clippy::useless-borrows-in-formatting` warnings (redundant `&` in format! args) in ndk-build2 that only surfaced once the crate was re-linted. Closes #19
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes #20