Cannot install TFS plugin in Android studio

i I downloaded the TFS plugin from under the URL and added it to my Android studio. But when I try to open it, it is displayed in red. Please help me decide how to solve this.

http://plugins.jetbrains.com/plugin/4578?pr=phpStorm&showAllUpdates=true

enter image description here

enter image description here

+6
source share
4 answers

TFS integration is only supported in Intellij Idea Ultimate Edition , while Android Studio is based on Intellij Idea Community Edition code, so it cannot support TFS integration. Why Google will supply everything for free that is sold by Jetbrains. See Version Control and Feature Comparison .

Update

If you don't already know, check out Team Foundation Server - Integration of Versioning . An alternative without development and open source.
The Visual Studio Team Services plugin is now available as well. See installation instructions .

+4
source

The official version of the TFS plugin is available in the Android Studio Plugin Repository . Installation instructions are available in the Team Services Team Plugin for Android Studio .

Team Services plugin for Android Studio is available in Implemented plugin for Android Studio. The plugin can be installed from Android Studio by viewing the plugin repository.

  • In Android Studio, open the plugin settings :

    • Linux : from the File menu, select Settings ... then Plugins
    • Mac : From the Android Studio menu, select "Settings" ... then "Plugins"
    • Windows : from the File menu, select Settings ... then Plugins
  • Click the "Browse Repositories ..." button and find "Team Visual Studio Services . "

  • Click the "Install Plugin" button and restart Android Studio.
+3
source

The workaround is to use GitTF or Git TFS Android Studio will work with Git, and then you have to do push and pulls using the command line. Which may well cost

+1
source

A plugin for integrating TFS with Android Studio is currently available. I have not tried it, but it says that it will work with Android Studio. You can learn more about this in the blog from Microsoft.

+1
source

Source: https://habr.com/ru/post/982931/


All Articles