-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#479 android studio plugin support #529
#479 android studio plugin support #529
Conversation
Since they each only provide one tool-specific String method, it has been moved to the corresponding tool.
Pull Request Test Coverage Report for Build 10454985943Details
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a really nice refactoring of both IdeaBasedTools.
I've added some small CR's and a question/recommendation.
cli/src/test/java/com/devonfw/tools/ide/tool/androidstudio/AndroidStudioTest.java
Show resolved
Hide resolved
cli/src/test/java/com/devonfw/tools/ide/tool/androidstudio/AndroidStudioTest.java
Show resolved
Hide resolved
cli/src/main/java/com/devonfw/tools/ide/tool/androidstudio/AndroidStudio.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good now. Ready for review.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@slskiba thanks for this PR. You nicely consolidated the plugin installation for IDEA based IDEs. Also nice that you care even about missing JavaDoc in tests you met alongside.
Good job 👍
I found one small thing to improve and left a comment. Please have a look and consider an update.
Apart from that ready for merge.
Closes #479.
Adds plugin support for Android Studio.
Refactored
IntellijBasedPluginInstaller
toIdeaBasedPluginInstaller
to be used with both Intellij and AndroidStudio. At this point I see no reason to keep separate implementations for Intellij and Android Studio PluginInstallers derived from the IdeaBasedPluginInstaller.