Status Update
Comments
xa...@google.com <xa...@google.com> #2
1. Android Studio version and OS type and version
2. Screenshots or videos of the issue
3. idea.log file (select Help > Show Log in Finder / Explorer)
4. Thread dumps if the issue is a freezing or non-responding UI.
For more information on what’s needed and how to obtain this information please read the guide at
sp...@google.com <sp...@google.com> #3
2) See attached screen recording
Opened a scratch file and tried to type an "@" symbol. You can see that in the keyboard viewer
Btw this issue only occurs in text editor
3) See attached log file
How to reproduce:
- Open any project
- Open a source file
- Try to type "@"-Symbol
4) There is no freeze or stuck UI/process in AS
xa...@google.com <xa...@google.com> #4
[Deleted User] <[Deleted User]> #5
I can't repro on Linux. This might be a general IntelliJ shortcut system issue.
The shortcut mentioned in Option-L, Option-F
which isn't anywhere near @
. Additionally, the shortcut is only supposed to active inside the Logcat tool window.
That said, I suppose I could change the shortcut to something else on Mac's. I don't have a Mac so I can't test this nor can I check if any shortcut I choose will be in conflict with something.
[Deleted User] <[Deleted User]> #6
Adarsh, please advise
it...@gmail.com <it...@gmail.com> #7
The video shows that a non-English keyboard layout is being used (I believe it's German given the autocompletions). This relocates the @
symbol onto the L
key such that ⌥L
will type an @
.
Given how macOS allows typing special characters, I assume this is a Mac-only issue. I also suspect any other keyboard shortcuts that start with ⌥
will produce the same behavior.
tn...@google.com <tn...@google.com> #8
Hmm, so I'm looking for other Alt-
bindings on my Linux and I can see a few:
Alt-Q
->Context info
Alt-J
->Add selection for Next Occurrence
Alt-O
->Export Results
Alt-M
->Amend Commit
Does this happen for these too? If not, what are these actions bound to on Mac?
1l...@gmail.com <1l...@gmail.com> #9
I'm hesitant to change the default binding because it might result in conflicting with some other layout. IntelliJ and Android Studio is currently not localized and is offered only in English. HAving said that, it seems like the clear workaround is to either remove the existing key binding or remap to something else that works.
Description
Consider a dynamic-feature,
df
, that depends on its app module,app
, and a library,lib
, as shown below:Running
lint
from theapp
module withcheckDependencies true
should cause issues fromlib
to be included inapp
's lint report. Currently, that's not the case - only issues fromapp
anddf
are included inapp
's lint report, not issues fromlib
.