Fix visibility of background service apps - #89
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
📝 WalkthroughWalkthroughThe PR replaces the Android 11+ package-visibility ChangesPackage Visibility Permission Change
Filename Sanitization Whitelist Update
Estimated code review effort: 1 (Trivial) | ~5 minutes Related Issues: Suggested labels: enhancement, manifest Suggested reviewers: pass-with-high-score 🐰 A permission swapped, a queries block gone, 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
🧹 Nitpick comments (1)
app/src/main/AndroidManifest.xml (1)
53-54: 🎯 Functional Correctness | 🔵 TrivialAdd the Play Console declaration for
QUERY_ALL_PACKAGES— This is appropriate for app-management discovery, but Google Play still requires the Permissions Declaration Form and a core-purpose justification before release.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@app/src/main/AndroidManifest.xml` around lines 53 - 54, The AndroidManifest includes QUERY_ALL_PACKAGES via the QUERY_ALL_PACKAGES permission, so make sure the release process also includes the required Play Console permissions declaration. Update the app submission checklist for the manifest change in the AndroidManifest to complete the Permissions Declaration Form and provide the core-purpose justification before publishing. No code change is needed in the manifest itself; the fix is to add the required Play Console disclosure tied to the QUERY_ALL_PACKAGES usage.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Nitpick comments:
In `@app/src/main/AndroidManifest.xml`:
- Around line 53-54: The AndroidManifest includes QUERY_ALL_PACKAGES via the
QUERY_ALL_PACKAGES permission, so make sure the release process also includes
the required Play Console permissions declaration. Update the app submission
checklist for the manifest change in the AndroidManifest to complete the
Permissions Declaration Form and provide the core-purpose justification before
publishing. No code change is needed in the manifest itself; the fix is to add
the required Play Console disclosure tied to the QUERY_ALL_PACKAGES usage.
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: a1275eb0-2c85-49e9-b001-307012bc56ae
📒 Files selected for processing (2)
app/src/main/AndroidManifest.xmlcore/src/main/java/app/pwhs/core/install/ApkExtractor.kt
This PR fixes #84 by replacing the restricted
<queries>block with theQUERY_ALL_PACKAGESpermission inAndroidManifest.xml. This ensures that apps without a launcher intent (such as Every Proxy Network Bridge) are correctly listed in the Manage and Backup screens.Summary by CodeRabbit
New Features
Bug Fixes