Frode Nilsen
- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 7
-
Edited Is there a way to list git branches sorted on "last checked out"?
AnsweredMy branch list when clicking on the git branch indicator in the lower right corner looks like the picture below... I never remember what the name of the branch I worked on an hour ago was because w... -
Edited Where did AndroidModuleModel.findProductFlavor go? My plugin throws NoSuchMethodError
AnsweredI am the author of this plugin and it has been working well up until now. The method AndroidModuleModel.findProductFlavor() existed and works on Androd Studio 4.1, but when upgrading to 4.2.1 my u... -
Created Unable to upgrade intellij plugin from 0.4.21 to 1.0
AnsweredI have a plugin that I'm working on. Tried to upgrade to the com.jetbrains.intellij plugin from 0.4.21 to 1.0 today in IntelliJ community v 2020.2 build 202.8194.7 . The error: A problem occurred e... -
Created My maven dependency is resolved, but not compiled. How do I debug?
So I have an android project and I've successfully resolved the support libraries (v4 and v7). You don't necessarily need to program Android to answer this question - suffice to say that v7-support... -
Created Any way to disable or set default refactor preview behaviour?
AnsweredI'm bothered by the constant nagging of if I want to refactor string literals and comments, when doing field renaming in Java classes. Is there any way I can set up IDEA to never bother with string... -
Created Is there any way to see the maven dependecy tree?
Lets say I have bunch of maven dependencies, and a couple of them depend on the same underlying subdependency, and I want to find out which. Is there any way to see a dependency graph/tree on maven... -
Created Why does IDEA mark this Android code as erronous? It compiles
This is fine: findViewById(R.id.cat_name).setVisibility(GONE); This is not: findViewById(R.id.cat_name).setVisibility(0x00000008);What gives? Both are perfectly valid integers! If I wanted ...