feat(open-in): add Android Studio support#1437
Merged
arnestrickmann merged 2 commits intogeneralaction:mainfrom Mar 12, 2026
Merged
feat(open-in): add Android Studio support#1437arnestrickmann merged 2 commits intogeneralaction:mainfrom
arnestrickmann merged 2 commits intogeneralaction:mainfrom
Conversation
Adds Android Studio to the list of supported "Open In" apps in Settings → Interface, alongside PyCharm, RustRover, and WebStorm. Uses the official icon from developer.android.com. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
@ubuntudroid is attempting to deploy a commit to the General Action Team on Vercel. A member of the Team first needs to authorize it. |
Contributor
Greptile SummaryThis PR adds Android Studio to the "Open In" app list by registering its icon and platform-specific launch commands alongside the existing JetBrains IDE entries (IntelliJ IDEA, WebStorm, PyCharm, RustRover). The implementation is largely consistent with the existing pattern, with one notable deviation in the macOS config.
Confidence Score: 4/5
|
| Filename | Overview |
|---|---|
| src/shared/openInApps.ts | Adds Android Studio to ICON_PATHS and OPEN_IN_APPS with correct darwin/win32/linux configs, but darwin's checkCommands incorrectly includes studio64 (a Windows-only binary). |
| src/assets/images/android-studio.svg | New SVG icon for Android Studio; appears to be a correct, self-contained vector representation of the official Android Studio logo. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[Platform Detection] --> B{Platform?}
B -->|darwin| C[Check bundleIds / appNames]
B -->|win32| D[checkCommands: studio64, studio]
B -->|linux| E[checkCommands: studio]
C --> F{Android Studio found?}
C --> G[checkCommands: studio64❌, studio]
G --> F
F -->|Yes| H[Show in Open In list]
F -->|No| I[hideIfUnavailable → hidden]
H --> J{Open command}
J -->|darwin| K["studio path → open -a 'Android Studio' path"]
J -->|win32| L["studio64 path → studio path"]
J -->|linux| M["studio path"]
Last reviewed commit: e5ee20f
Contributor
|
Thanks for flagging and for fixing, @ubuntudroid! Merging. |
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.
Summary
studioCLI +open -a "Android Studio"), Windows (studio64/studio), and Linux (studio)Closes #1435
Test plan
hideIfUnavailable: true) - I couldn't test this as I don't have a machine without studio installed. Maybe someone else can help out here?