TSF Integration with Android Studio

0

I wonder if anyone has already realized or knows how to integrate Android studio with TSF. So far I've only found ways to integrate with IntelliJ.

    
asked by anonymous 02.12.2015 / 19:46

2 answers

0

Android Studio is based on the Community Edition version of Intellij IDEA. Integration with TFS as well as several other features are only available in the Ultimate Edition version of Intellij IDEA, which is not the basis for Android Studio.

You will probably only be able to do this integration by doing the joins manually by Visual Studio or command line.

    
02.12.2015 / 19:51
0

The integration exists, you will not have all the features in the IDE, but you can use the Web Portal, that is, the Web interface.

  • Code

    I do not know Android Studio, however, I know that it is natively integrated with Git, and today TFS or VSTS (old VSO) accept creating Git repositories; including the VSTS accepts in each project 2 types of repositories, Git as TFVC. When you commit you can use # [WorkItem Number] in the message and TFS will commit the commit with the artifacts, usually Tasks.

  • Artifacts

    The creation of WorkItems (Tasks, User Storys / Product Backlog Items, Features, ...) should be done via Web Portal, including some features are no longer in Visual Studio, since Microsoft is moving so that TFS / VSTS is seen as a tool that meets any platform, language, etc ...

  • Build

    With the current 2015 version of TFS and VSTS, you can build Android code builds, is now simpler, "scripted", and you can write the steps in Node.js, if the existing ones do not.

03.12.2015 / 17:33