Add INTERACT_ACROSS_USERS permission for cross-profile sharing (#4246)#62
Open
word5355 wants to merge 1 commit into
Open
Add INTERACT_ACROSS_USERS permission for cross-profile sharing (#4246)#62word5355 wants to merge 1 commit into
word5355 wants to merge 1 commit into
Conversation
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.
This PR adds the
android.permission.INTERACT_ACROSS_USERSpermission to the baseAndroidManifest.xmlto fix the cross-profile proxy routing issue on Android 17.Starting with Android 17, cross-profile loopback communication (such as sharing a proxy via
127.0.0.1to a Work Profile) is blocked by the OS by default.By declaring this permission in the manifest, users can manually grant it via ADB to bypass the restriction and restore the cross-profile routing functionality.
android.permission.INTERACT_ACROSS_USERSto the base manifest.tools:ignore="ProtectedPermissions"to gracefully suppress the expected Lint warnings, since this is a system-level permission.(Note: I am not very experienced with Android development, so please let me know if there is a better approach or if any further adjustments are needed!)
Resolves SagerNet/sing-box#4246
Workaround Usage (For Android 17 Users)
After updating to a build containing this PR, users can run the following ADB command to grant the permission:
Reference: